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
(Classic ASP) Google Contacts - Create New ContactDemonstrates how to create a new contact for the Google Contacts API.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' First create a new contact XML. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Xml") set xml = Server.CreateObject("Chilkat.Xml") xml.Tag = "atom:entry" success = xml.AddAttribute("xmlns:atom","http://www.w3.org/2005/Atom") success = xml.AddAttribute("xmlns:gd","http://schemas.google.com/g/2005") success = xml.UpdateAttrAt("atom:category",1,"scheme","http://schemas.google.com/g/2005#kind") success = xml.UpdateAttrAt("atom:category",1,"term","http://schemas.google.com/contact/2008#contact") xml.UpdateChildContent "gd:name|gd:givenName","Elizabeth" xml.UpdateChildContent "gd:name|gd:familyName","Bennet" xml.UpdateChildContent "gd:name|gd:fullName","Elizabeth Bennet" success = xml.UpdateAttrAt("atom:content",1,"type","text") xml.UpdateChildContent "atom:content","Notes" success = xml.UpdateAttrAt("gd:email",1,"rel","http://schemas.google.com/g/2005#work") success = xml.UpdateAttrAt("gd:email",1,"primary","true") success = xml.UpdateAttrAt("gd:email",1,"address","liz@gmail.com") success = xml.UpdateAttrAt("gd:email",1,"displayName","E. Bennet") success = xml.UpdateAttrAt("gd:email",1,"rel","http://schemas.google.com/g/2005#home") success = xml.UpdateAttrAt("gd:email",1,"address","liz@example.org") success = xml.UpdateAttrAt("gd:phoneNumber",1,"rel","http://schemas.google.com/g/2005#work") success = xml.UpdateAttrAt("gd:phoneNumber",1,"primary","true") xml.UpdateChildContent "gd:phoneNumber","(206)555-1212" success = xml.UpdateAttrAt("gd:phoneNumber",1,"rel","http://schemas.google.com/g/2005#home") xml.UpdateChildContent "gd:phoneNumber","(206)555-1213" success = xml.UpdateAttrAt("gd:im",1,"address","liz@gmail.com") success = xml.UpdateAttrAt("gd:im",1,"protocol","http://schemas.google.com/g/2005#GOOGLE_TALK") success = xml.UpdateAttrAt("gd:im",1,"primary","true") success = xml.UpdateAttrAt("gd:im",1,"rel","http://schemas.google.com/g/2005#home") success = xml.UpdateAttrAt("gd:structuredPostalAddress",1,"rel","http://schemas.google.com/g/2005#work") success = xml.UpdateAttrAt("gd:structuredPostalAddress",1,"primary","true") xml.UpdateChildContent "gd:structuredPostalAddress|gd:city","Mountain View" xml.UpdateChildContent "gd:structuredPostalAddress|gd:street","1600 Amphitheatre Pkwy" xml.UpdateChildContent "gd:structuredPostalAddress|gd:region","CA" xml.UpdateChildContent "gd:structuredPostalAddress|gd:postcode","94043" xml.UpdateChildContent "gd:structuredPostalAddress|gd:country","United States" xml.UpdateChildContent "gd:structuredPostalAddress|gd:formattedAddress","1600 Amphitheatre Pkwy Mountain View" Response.Write "<pre>" & Server.HTMLEncode( xml.GetXml()) & "</pre>" ' 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 ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set jsonToken = Server.CreateObject("Chilkat.JsonObject") success = jsonToken.LoadFile("qa_data/tokens/googleContacts.json") If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( "Failed to load googleContacts.json") & "</pre>" Response.End End If ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.AuthGoogle") set gAuth = Server.CreateObject("Chilkat.AuthGoogle") gAuth.AccessToken = jsonToken.StringOf("access_token") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Rest") set rest = Server.CreateObject("Chilkat.Rest") ' Connect using TLS. bAutoReconnect = 1 success = rest.Connect("www.google.com",443,1,bAutoReconnect) ' Provide the authentication credentials (i.e. the access token) success = 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 success = rest.AddHeader("Content-Type","application/atom+xml") success = rest.AddHeader("GData-Version","3.0") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbRequestBody = Server.CreateObject("Chilkat.StringBuilder") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbResponseBody = Server.CreateObject("Chilkat.StringBuilder") success = xml.GetXmlSb(sbRequestBody) success = rest.FullRequestSb("POST","/m8/feeds/contacts/default/full",sbRequestBody,sbResponseBody) If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( rest.LastErrorText) & "</pre>" Response.End End If ' A successful response will have a status code equal to 201. If (rest.ResponseStatusCode <> 201) Then Response.Write "<pre>" & Server.HTMLEncode( "response status code = " & rest.ResponseStatusCode) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "response status text = " & rest.ResponseStatusText) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "response header: " & rest.ResponseHeader) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "response body: " & sbResponseBody.GetAsString()) & "</pre>" Response.End End If ' If the 201 response was received, then the contact was successfully created, ' and there is no response body. Response.Write "<pre>" & Server.HTMLEncode( "Contact created.") & "</pre>" %> </body> </html> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.