Category: API Documentation
How to built a uploaded or copied photo over deefunia api?
By administrator on Nov 9, 2011 | In API Documentation
In order to build a photo with deefunia api in php, you will need to do this step. $url = "http://api.deefunia.com/?a=b&tid=[template id]&suid=[successful upload or copied id]&hash=[the hash of suid]; $built = file_get_contents($url);… more »
How to get a photo in server copied over deefunia for preparation of photomaking
By administrator on Nov 9, 2011 | In API Documentation
$url = "http://api.deefunia.com/?a=c&iurl=[URL of photo]&token=[token given by deefunia api]&hash=[hash that comes with token]; $copy = file_get_contents($url); $result = json_decode($copy, true);print_r($result);*A token must be va… more »
How to get a token for upload a photo to deefunia
By administrator on Nov 9, 2011 | In API Documentation
This is how we get a deefunia api token for upload or copy from url.//get deefunia token$url = "http://api.deefunia.com/?a=t&f=json";$content = file_get_contents($url);$token = json_decode($content, true);print_r($token); more »
How to get a deefunia listing with deefunia API
By administrator on Nov 9, 2011 | In API Documentation
To get a list of available templates through PHP is as follow://list templates$url = "http://api.deefunia.com/?a=l&f=json";$content = file_get_contents($url);$json = json_decode($content, true);print_r($json); more »
Deefunia API version 1 (Beta)
By administrator on Oct 5, 2011 | In API Documentation
Result will be shown in the form of JSON format.Will be extended to other format like array and XML format in the future.To list the templates available in Deefunia:http://api.deefunia.com/?a=lTo get a token for photo uploading:coming soon… more »



