SQL Server
SQL Server
Google Contacts - Adding/Updating a photo for a contact
See more Google APIs Examples
Demonstrates how to upload a photo for a Google Contact.Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 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.
-- --------------------------------------------------------------------------------------------------------
-- Note: The code for setting up the Chilkat REST object and making the initial connection can be done once.
-- Once connected, the REST object may be re-used for many REST API calls.
-- (It's a good idea to put the connection setup code in a separate function/subroutine.)
-- --------------------------------------------------------------------------------------------------------
-- It is assumed we previously obtained an OAuth2 access token.
-- This example loads the JSON access token file
-- saved by this example: Get Google Contacts OAuth2 Access Token
DECLARE @jsonToken int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonToken OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
EXEC sp_OAMethod @jsonToken, 'LoadFile', @success OUT, 'qa_data/tokens/googleContacts.json'
IF @success <> 1
BEGIN
PRINT 'Failed to load googleContacts.json'
EXEC @hr = sp_OADestroy @jsonToken
RETURN
END
DECLARE @gAuth int
EXEC @hr = sp_OACreate 'Chilkat.AuthGoogle', @gAuth OUT
EXEC sp_OAMethod @jsonToken, 'StringOf', @sTmp0 OUT, 'access_token'
EXEC sp_OASetProperty @gAuth, 'AccessToken', @sTmp0
DECLARE @rest int
EXEC @hr = sp_OACreate 'Chilkat.Rest', @rest OUT
-- Connect using TLS.
DECLARE @bAutoReconnect int
SELECT @bAutoReconnect = 1
EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'www.google.com', 443, 1, @bAutoReconnect
-- Provide the authentication credentials (i.e. the access token)
EXEC sp_OAMethod @rest, 'SetAuthGoogle', @success OUT, @gAuth
-- ----------------------------------------------
-- OK, the REST connection setup is completed..
-- ----------------------------------------------
-- To upload a photo for the contact, send the following:
-- PUT /m8/feeds/photos/media/default/contactId
-- If-match: Etag
-- Content-Type: image/*
-- ...
-- [Photo data bytes]
EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'GData-Version', '3.0'
EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'If-Match', '*'
EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Content-Type', 'image/*'
DECLARE @sbPath int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbPath OUT
EXEC sp_OAMethod @sbPath, 'Append', @success OUT, '/m8/feeds/photos/media/default/{contactId}'
-- Upload a photo for the contact having contactId = "1ea2e4fe0ef24e09"
DECLARE @numReplacements int
EXEC sp_OAMethod @sbPath, 'Replace', @numReplacements OUT, '{contactId}', '1ea2e4fe0ef24e09'
-- Let's get our photo data..
DECLARE @pngData int
EXEC @hr = sp_OACreate 'Chilkat.BinData', @pngData OUT
EXEC sp_OAMethod @pngData, 'LoadFile', @success OUT, 'qa_data/png/dude.png'
DECLARE @sbResponseBody int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @sbPath, 'GetAsString', @sTmp0 OUT
EXEC sp_OAMethod @rest, 'FullRequestBd', @success OUT, 'PUT', @sTmp0, @pngData, @sbResponseBody
IF @success <> 1
BEGIN
EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @gAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbPath
EXEC @hr = sp_OADestroy @pngData
EXEC @hr = sp_OADestroy @sbResponseBody
RETURN
END
-- A successful response will have a status code equal to 200.
EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
IF @iTmp0 <> 200
BEGIN
EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
PRINT 'response status code = ' + @iTmp0
EXEC sp_OAGetProperty @rest, 'ResponseStatusText', @sTmp0 OUT
PRINT 'response status text = ' + @sTmp0
EXEC sp_OAGetProperty @rest, 'ResponseHeader', @sTmp0 OUT
PRINT 'response header: ' + @sTmp0
EXEC sp_OAMethod @sbResponseBody, 'GetAsString', @sTmp0 OUT
PRINT 'response body: ' + @sTmp0
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @gAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbPath
EXEC @hr = sp_OADestroy @pngData
EXEC @hr = sp_OADestroy @sbResponseBody
RETURN
END
-- If the 200 success response was received.
PRINT 'Response Body:'
EXEC sp_OAMethod @sbResponseBody, 'GetAsString', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Success.'
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @gAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbPath
EXEC @hr = sp_OADestroy @pngData
EXEC @hr = sp_OADestroy @sbResponseBody
END
GO