Rust
Rust
Google Contacts - Create New Contact
See more Google APIs Examples
Demonstrates how to create a new contact for the Google Contacts API.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// First create a new contact XML.
let xml = chilkat::Xml::new();
xml.set_tag("atom:entry");
let _ = xml.add_attribute("xmlns:atom", "http://www.w3.org/2005/Atom");
let _ = xml.add_attribute("xmlns:gd", "http://schemas.google.com/g/2005");
let _ = xml.update_attr_at("atom:category", true, "scheme", "http://schemas.google.com/g/2005#kind");
let _ = xml.update_attr_at("atom:category", true, "term", "http://schemas.google.com/contact/2008#contact");
xml.update_child_content("gd:name|gd:givenName", "Elizabeth");
xml.update_child_content("gd:name|gd:familyName", "Bennet");
xml.update_child_content("gd:name|gd:fullName", "Elizabeth Bennet");
let _ = xml.update_attr_at("atom:content", true, "type", "text");
xml.update_child_content("atom:content", "Notes");
let _ = xml.update_attr_at("gd:email", true, "rel", "http://schemas.google.com/g/2005#work");
let _ = xml.update_attr_at("gd:email", true, "primary", "true");
let _ = xml.update_attr_at("gd:email", true, "address", "liz@gmail.com");
let _ = xml.update_attr_at("gd:email", true, "displayName", "E. Bennet");
let _ = xml.update_attr_at("gd:email", true, "rel", "http://schemas.google.com/g/2005#home");
let _ = xml.update_attr_at("gd:email", true, "address", "liz@example.org");
let _ = xml.update_attr_at("gd:phoneNumber", true, "rel", "http://schemas.google.com/g/2005#work");
let _ = xml.update_attr_at("gd:phoneNumber", true, "primary", "true");
xml.update_child_content("gd:phoneNumber", "(206)555-1212");
let _ = xml.update_attr_at("gd:phoneNumber", true, "rel", "http://schemas.google.com/g/2005#home");
xml.update_child_content("gd:phoneNumber", "(206)555-1213");
let _ = xml.update_attr_at("gd:im", true, "address", "liz@gmail.com");
let _ = xml.update_attr_at("gd:im", true, "protocol", "http://schemas.google.com/g/2005#GOOGLE_TALK");
let _ = xml.update_attr_at("gd:im", true, "primary", "true");
let _ = xml.update_attr_at("gd:im", true, "rel", "http://schemas.google.com/g/2005#home");
let _ = xml.update_attr_at("gd:structuredPostalAddress", true, "rel", "http://schemas.google.com/g/2005#work");
let _ = xml.update_attr_at("gd:structuredPostalAddress", true, "primary", "true");
xml.update_child_content("gd:structuredPostalAddress|gd:city", "Mountain View");
xml.update_child_content("gd:structuredPostalAddress|gd:street", "1600 Amphitheatre Pkwy");
xml.update_child_content("gd:structuredPostalAddress|gd:region", "CA");
xml.update_child_content("gd:structuredPostalAddress|gd:postcode", "94043");
xml.update_child_content("gd:structuredPostalAddress|gd:country", "United States");
xml.update_child_content("gd:structuredPostalAddress|gd:formattedAddress", "1600 Amphitheatre Pkwy Mountain View");
println!("{}", xml.get_xml().unwrap_or_default());
// 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
let json_token = chilkat::JsonObject::new();
if json_token.load_file("qa_data/tokens/googleContacts.json").is_err() {
println!("Failed to load googleContacts.json");
return;
}
let g_auth = chilkat::AuthGoogle::new();
g_auth.set_access_token(&json_token.string_of("access_token").unwrap_or_default());
let rest = chilkat::Rest::new();
// Connect using TLS.
let b_auto_reconnect = true;
let _ = rest.connect("www.google.com", 443, true, b_auto_reconnect).is_ok();
// Provide the authentication credentials (i.e. the access token)
let _ = rest.set_auth_google(&g_auth);
// ----------------------------------------------
// 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
let _ = rest.add_header("Content-Type", "application/atom+xml");
let _ = rest.add_header("GData-Version", "3.0");
let sb_request_body = chilkat::StringBuilder::new();
let sb_response_body = chilkat::StringBuilder::new();
let _ = xml.get_xml_sb(&sb_request_body);
if rest.full_request_sb("POST", "/m8/feeds/contacts/default/full", &sb_request_body, &sb_response_body).is_err() {
println!("{}", rest.last_error_text());
return;
}
// A successful response will have a status code equal to 201.
if rest.response_status_code() != 201 {
println!("response status code = {}", rest.response_status_code());
println!("response status text = {}", rest.response_status_text());
println!("response header: {}", rest.response_header());
println!("response body: {}", sb_response_body.get_as_string().unwrap_or_default());
return;
}
// If the 201 response was received, then the contact was successfully created,
// and there is no response body.
println!("Contact created.");