Jump to content

Sending and receiving info from google via PHP


misslilbit02

Recommended Posts

This is what I need to accomplish. I'm using Google's Provisional API and I'm trying to retrieve a list of users I already have created.

 

I need to send to Google

 

Content-type: application/atom+xml

Authorization: GoogleLogin auth=your-authentication-token

 

As headers in PHP. I also need to send a Get request to the page: https://www.google.com/a/feeds/{domain}/user/2.0 and I'm totally lost as to how to do this without using a form.

 

 

 

My attempt at the headers is below. Is that considered correct?

 


<?php

header("Content-Type: Application/atom+xml"); 
header("Authorization: GoogleLogin auth=[auth token]");

?>


 

As for the GET request what would that code look like?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.