Is there any good example that shows how to fill the application settings creating the settings for request?
this is code from google
using Google.Contacts;
using Google.GData.Contacts;
using Google.GData.Client;
using Google.GData.Extensions;
// ...
RequestSettings settings = new RequestSettings("<var>YOUR_APPLICATION_NAME</var>");
// Add authorization token.
//
// ...
ContactsRequest cr = new ContactsRequest(settings);
Do I have to specify the token that I get from oAuth request, and no more?
The value for YOUR_APPLICATION_NAME could be any string value?
No comments:
Post a Comment