Google API

Associate
Joined
19 Jul 2006
Posts
1,847
http://code.google.com/googleapps/d...ide_protocol.html#GA_email_settings_using_api

I'm I been thick here.

How do i do this? Im strugling do i just put in the address bar
https://www.google.com/accounts/ClientLogin&Email=<email_address>&Passwd=<password>&accountType=HOSTED&service=apps changing the bits.


But then how do i do something like

PUT https://apps-apis.google.com/a/feeds/emailsettings/2.0/example.com/ben/webclip

<?xml version="1.0" encoding="utf-8"?>
<atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:apps="http://schemas.google.com/apps/2006">
<apps:property name="enable" value="true" />
</atom:entry>

Im totally at a loss
 
Erm. API means Application Programming Interface, and they are methods by which one person's program can talk to another person's program directly. I'd expect you to be using PHP, or something, to talk to it.

You *could* use a form in HTML to send a POST over, but depending what Google returns from this, and what you want to do with what they return, you might be stumped. If you sent it with AJAX you could process the response with Javascript.
 
Back
Top Bottom