Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C++) Google Contacts - Create New ContactDemonstrates how to create a new contact for the Google Contacts API.
#include <CkXmlW.h> #include <CkJsonObjectW.h> #include <CkAuthGoogleW.h> #include <CkRestW.h> #include <CkStringBuilderW.h> void ChilkatSample(void) { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // First create a new contact XML. CkXmlW xml; xml.put_Tag(L"atom:entry"); xml.AddAttribute(L"xmlns:atom",L"http://www.w3.org/2005/Atom"); xml.AddAttribute(L"xmlns:gd",L"http://schemas.google.com/g/2005"); xml.UpdateAttrAt(L"atom:category",true,L"scheme",L"http://schemas.google.com/g/2005#kind"); xml.UpdateAttrAt(L"atom:category",true,L"term",L"http://schemas.google.com/contact/2008#contact"); xml.UpdateChildContent(L"gd:name|gd:givenName",L"Elizabeth"); xml.UpdateChildContent(L"gd:name|gd:familyName",L"Bennet"); xml.UpdateChildContent(L"gd:name|gd:fullName",L"Elizabeth Bennet"); xml.UpdateAttrAt(L"atom:content",true,L"type",L"text"); xml.UpdateChildContent(L"atom:content",L"Notes"); xml.UpdateAttrAt(L"gd:email",true,L"rel",L"http://schemas.google.com/g/2005#work"); xml.UpdateAttrAt(L"gd:email",true,L"primary",L"true"); xml.UpdateAttrAt(L"gd:email",true,L"address",L"liz@gmail.com"); xml.UpdateAttrAt(L"gd:email",true,L"displayName",L"E. Bennet"); xml.UpdateAttrAt(L"gd:email",true,L"rel",L"http://schemas.google.com/g/2005#home"); xml.UpdateAttrAt(L"gd:email",true,L"address",L"liz@example.org"); xml.UpdateAttrAt(L"gd:phoneNumber",true,L"rel",L"http://schemas.google.com/g/2005#work"); xml.UpdateAttrAt(L"gd:phoneNumber",true,L"primary",L"true"); xml.UpdateChildContent(L"gd:phoneNumber",L"(206)555-1212"); xml.UpdateAttrAt(L"gd:phoneNumber",true,L"rel",L"http://schemas.google.com/g/2005#home"); xml.UpdateChildContent(L"gd:phoneNumber",L"(206)555-1213"); xml.UpdateAttrAt(L"gd:im",true,L"address",L"liz@gmail.com"); xml.UpdateAttrAt(L"gd:im",true,L"protocol",L"http://schemas.google.com/g/2005#GOOGLE_TALK"); xml.UpdateAttrAt(L"gd:im",true,L"primary",L"true"); xml.UpdateAttrAt(L"gd:im",true,L"rel",L"http://schemas.google.com/g/2005#home"); xml.UpdateAttrAt(L"gd:structuredPostalAddress",true,L"rel",L"http://schemas.google.com/g/2005#work"); xml.UpdateAttrAt(L"gd:structuredPostalAddress",true,L"primary",L"true"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:city",L"Mountain View"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:street",L"1600 Amphitheatre Pkwy"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:region",L"CA"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:postcode",L"94043"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:country",L"United States"); xml.UpdateChildContent(L"gd:structuredPostalAddress|gd:formattedAddress",L"1600 Amphitheatre Pkwy Mountain View"); wprintf(L"%s\n",xml.getXml()); // Created the following XML: // <?xml version="1.0" encoding="utf-8" ?> // <atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005"> // <atom:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/contact/2008#contact" /> // <gd:name> // <gd:givenName>Elizabeth</gd:givenName> // <gd:familyName>Bennet</gd:familyName> // <gd:fullName>Elizabeth Bennet</gd:fullName> // </gd:name> // <atom:content type="text">Notes</atom:content> // <gd:email primary="true" displayName="E. Bennet" rel="http://schemas.google.com/g/2005#home" address="liz@example.org" /> // <gd:phoneNumber primary="true" rel="http://schemas.google.com/g/2005#home">(206)555-1213</gd:phoneNumber> // <gd:im address="liz@gmail.com" protocol="http://schemas.google.com/g/2005#GOOGLE_TALK" primary="true" rel="http://schemas.google.com/g/2005#home" /> // <gd:structuredPostalAddress rel="http://schemas.google.com/g/2005#work" primary="true"> // <gd:city>Mountain View</gd:city> // <gd:street>1600 Amphitheatre Pkwy</gd:street> // <gd:region>CA</gd:region> // <gd:postcode>94043</gd:postcode> // <gd:country>United States</gd:country> // <gd:formattedAddress>1600 Amphitheatre Pkwy Mountain View</gd:formattedAddress> // </gd:structuredPostalAddress> // </atom:entry> // -------------------------------------------------------------------------------------------------------- // 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 CkJsonObjectW jsonToken; bool success = jsonToken.LoadFile(L"qa_data/tokens/googleContacts.json"); if (success != true) { wprintf(L"Failed to load googleContacts.json\n"); return; } CkAuthGoogleW gAuth; gAuth.put_AccessToken(jsonToken.stringOf(L"access_token")); CkRestW rest; // Connect using TLS. bool bAutoReconnect = true; success = rest.Connect(L"www.google.com",443,true,bAutoReconnect); // Provide the authentication credentials (i.e. the access token) rest.SetAuthGoogle(gAuth); // ---------------------------------------------- // OK, the REST connection setup is completed.. // ---------------------------------------------- // To create a contact, we need to send the following: // POST /m8/feeds/contacts/default/full // Content-Type: application/atom+xml // GData-Version: 3.0 rest.AddHeader(L"Content-Type",L"application/atom+xml"); rest.AddHeader(L"GData-Version",L"3.0"); CkStringBuilderW sbRequestBody; CkStringBuilderW sbResponseBody; xml.GetXmlSb(sbRequestBody); success = rest.FullRequestSb(L"POST",L"/m8/feeds/contacts/default/full",sbRequestBody,sbResponseBody); if (success != true) { wprintf(L"%s\n",rest.lastErrorText()); return; } // A successful response will have a status code equal to 201. if (rest.get_ResponseStatusCode() != 201) { wprintf(L"response status code = %d\n",rest.get_ResponseStatusCode()); wprintf(L"response status text = %s\n",rest.responseStatusText()); wprintf(L"response header: %s\n",rest.responseHeader()); wprintf(L"response body: %s\n",sbResponseBody.getAsString()); return; } // If the 201 response was received, then the contact was successfully created, // and there is no response body. wprintf(L"Contact created.\n"); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.