Hi, I'am new with the API ! I'am trying to build some console app to auto
setting emails for my domain !
I add our domain to google app and link it with google server !
( So I'm able to receive and send mail )
I tried to do one think : Disable WebClip using this Code !
class Program
{
static void Main(string[] args)
{
GoogleMailSettingsService service = new
GoogleMailSettingsService("hypradev.com", "HypraDev");
service.setUserCredentials("[email protected]",
"********");
try
{
service.UpdateWebclip("alaeddine.gallas", "false");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.ReadLine();
}
}
Console output :
Execution of request failed:
https://apps-apis.google.com/a/feeds/emailsettings/2.0/hypradev.com/alaeddine.gallas/webclip
I tried also to retrieve labels but it throw me the same exception !
Did I miss something ? Did I have to enable something in the domain
management portal ?
What I have to do to make thins code run ?
--
You received this message because you are subscribed to the Google Groups
"Google Apps Domain Information and Management APIs" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-apps-mgmt-apis/-/E1Rm9jgWO0sJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-apps-mgmt-apis?hl=en.