Sample code for 30+ languages & platforms
SQL Server

Get a Google Drive Access Token using a .p12 Private Key

See more Google Drive Examples

Demonstrates how to get a Google Drive API access token using a .p12 private key.

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @gAuth int
    EXEC @hr = sp_OACreate 'Chilkat.AuthGoogle', @gAuth OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @pfx int
    EXEC @hr = sp_OACreate 'Chilkat.Pfx', @pfx OUT

    EXEC sp_OAMethod @pfx, 'LoadPfxFile', @success OUT, 'qa_data/googleApi/ChilkatTest-5ba79ce39459.p12', 'notasecret'
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @pfx, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @gAuth
        EXEC @hr = sp_OADestroy @pfx
        RETURN
      END

    EXEC sp_OAMethod @gAuth, 'SetP12', @success OUT, @pfx
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @gAuth, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @gAuth
        EXEC @hr = sp_OADestroy @pfx
        RETURN
      END

    -- Choose a scope.
    EXEC sp_OASetProperty @gAuth, 'Scope', 'https://www.googleapis.com/auth/drive'

    -- Request an access token that is valid for this many seconds.
    EXEC sp_OASetProperty @gAuth, 'ExpireNumSeconds', 3600

    -- If the application is requesting delegated access:
    -- The email address of the user for which the application is requesting delegated access,
    -- then set the email address here. (Otherwise leave it empty.)
    EXEC sp_OASetProperty @gAuth, 'SubEmailAddress', 'support@chilkatcloud.com'

    EXEC sp_OASetProperty @gAuth, 'EmailAddress', '597922945226-00rb0ppfg0snd9jo6bhvd4v17jtj2d3a@developer.gserviceaccount.com'

    -- Connect to www.googleapis.com using TLS (TLS 1.2 is the default.)
    -- The Chilkat socket object is used so that the connection can be established
    -- through proxies or an SSH tunnel if desired.
    DECLARE @tlsSock int
    EXEC @hr = sp_OACreate 'Chilkat.Socket', @tlsSock OUT

    EXEC sp_OAMethod @tlsSock, 'Connect', @success OUT, 'www.googleapis.com', 443, 1, 5000
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @tlsSock, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @gAuth
        EXEC @hr = sp_OADestroy @pfx
        EXEC @hr = sp_OADestroy @tlsSock
        RETURN
      END

    -- Send the request to obtain the access token.
    EXEC sp_OAMethod @gAuth, 'ObtainAccessToken', @success OUT, @tlsSock
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @gAuth, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @gAuth
        EXEC @hr = sp_OADestroy @pfx
        EXEC @hr = sp_OADestroy @tlsSock
        RETURN
      END

    -- Examine the access token:

    EXEC sp_OAGetProperty @gAuth, 'AccessToken', @sTmp0 OUT
    PRINT 'Access Token: ' + @sTmp0

    EXEC @hr = sp_OADestroy @gAuth
    EXEC @hr = sp_OADestroy @pfx
    EXEC @hr = sp_OADestroy @tlsSock


END
GO