Skip to content

Instantly share code, notes, and snippets.

@pawelsawicz
Created December 2, 2014 22:26
Show Gist options
  • Save pawelsawicz/1d07fe6875644aee6340 to your computer and use it in GitHub Desktop.
Save pawelsawicz/1d07fe6875644aee6340 to your computer and use it in GitHub Desktop.
<?php
include_once 'JustGivingClient.php';
$client = new JustGivingClient("https://api-sandbox.justgiving.com/", "0f938d22", 1, "apiunittest@justgiving.com", "password");
$response = $client->Page->UploadImage("{pageName}", "{desc}", "{imageWithExtension}", "{content-type}");
if($response == 1)
{
echo "Success!";
}
else
{
echo "Failed!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment