Skip to content

Instantly share code, notes, and snippets.

@joseadrian
Created September 15, 2012 04:38
Show Gist options
  • Save joseadrian/3726361 to your computer and use it in GitHub Desktop.
Save joseadrian/3726361 to your computer and use it in GitHub Desktop.
Subir foto con Batch Request
array(
'method' => 'POST',
'name' => 'foto',
'relative_url' => '/me/photos',
'body' => http_build_query(array(
'message' => 'Test!',
'url' => 'http://creative.ak.fbcdn.net/ads-ak-snc7/s110x80/v565063/flyers/125/39/13467109601528432494_10_ce7bfdee.jpg'
)),
'omit_response_on_success' => false
),
array(
'method' => 'GET',
'relative_url' => '/{result=foto:$.id}'
);
array(
'method' => 'POST',
'relative_url' => '/me/albums?access_token=' . $_GET['access_token'],
'name' => 'album',
'body' => http_build_query(array(
'message' => 'Fotos de batch',
'name' => 'Batch album'
)),
'omit_response_on_success' => true
),
array(
'method' => 'POST',
'name' => 'foto',
'relative_url' => '/{result=album:$.id}/photos',
'body' => http_build_query(array(
'message' => 'Test!',
'url' => 'http://creative.ak.fbcdn.net/ads-ak-snc7/s110x80/v565063/flyers/125/39/13467109601528432494_10_ce7bfdee.jpg'
)),
'omit_response_on_success' => false
),
array(
'method' => 'GET',
'relative_url' => '/{result=foto:$.id}'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment