Help Center Manage Your Account AdSpeed API
Sample Code
Please see the example below to access AdSpeed API.PHP
<?php class MyApp { private $mEndPoint = 'https://api.adspeed.com/'; private $mKey = 'YOUR_KEY'; // change to your own key private $mSecret = 'YOUR_SECRET'; // change to your own secret /** * Request API method via GET * @param string method * @param array params * @return string */ public function getAPI($pMethod,array $pParams=array()) { $vParams = array('key'=>$this->mKey,'method'=>$pMethod); $vParams = array_merge($pParams,$vParams); ksort($vParams); // sort the params alphabetically $vParams['sig'] = md5($this->mSecret.http_build_query($vParams,'','&')); $vURL = $this->mEndPoint.'?'.http_build_query($vParams,'','&'); $vCURL = curl_init($vURL); curl_setopt($vCURL,CURLOPT_USERAGENT,'AdSpeed-API-Requester'); curl_setopt($vCURL,CURLOPT_RETURNTRANSFER,1); // get XML result as string $vResult = curl_exec($vCURL); curl_close($vCURL); return $vResult; } /** * Request API method via POST * @param string method * @param array params * @return string */ public function postAPI($pMethod,array $pParams=array()) { $vParams = array('key'=>$this->mKey,'method'=>$pMethod); $vParams = array_merge($pParams,$vParams); ksort($vParams); // sort the params alphabetically $vParams['sig'] = md5($this->mSecret.http_build_query($vParams,'','&')); $vCURL = curl_init($this->mEndPoint); curl_setopt($vCURL,CURLOPT_POST,1); // use POST instead of GET curl_setopt($vCURL,CURLOPT_POSTFIELDS,$vParams); curl_setopt($vCURL,CURLOPT_USERAGENT,'AdSpeed-API-Requester'); curl_setopt($vCURL,CURLOPT_RETURNTRANSFER,1); // get XML result as string $vResult = curl_exec($vCURL); curl_close($vCURL); return $vResult; } /** * Upload an image (require Fast Delivery paid add-on) * @param string full path and filename * @param string description * @return string */ public function uploadImageAPI($pFullFileName,$pDescr) { $vParams = array( 'key'=>$this->mKey, 'method'=>'AS.Medias.upload', 'descr'=>$pDescr, ); ksort($vParams); // sort the params alphabetically $vParams['sig'] = md5($this->mSecret.http_build_query($vParams,'','&')); $vParams['file'] = '@'.$pFullFileName; // should be filename with full absolute path $vCURL = curl_init($this->mEndPoint); curl_setopt($vCURL,CURLOPT_POST,1); curl_setopt($vCURL,CURLOPT_POSTFIELDS,$vParams); curl_setopt($vCURL,CURLOPT_USERAGENT,'AdSpeed-API-Requester'); curl_setopt($vCURL,CURLOPT_RETURNTRANSFER,1); // get XML result as string $vResult = curl_exec($vCURL); curl_close($vCURL); return $vResult; } /** * Sample usage * @return void */ public function example() { // GET $vResult = $this->getAPI('AS.Ads.getCounts'); var_dump($vResult); /* // POST $vParams = array( 'name'=>'TextAdViaAPI', 'first'=>'First Text Line', 'next'=>'Second Line', 'clickurl'=>'https://example.com', ); $vResult = $this->postAPI('AS.Ads.createText',$vParams); var_dump($vResult); // UPLOAD (FAST DELIVERY ADD-ON NEEDED) $vResult = $this->uploadImageAPI('api.png','Upload an image ad file'); var_dump($vResult); */ } } $vTest = new MyApp(); $vTest->example(); ?>
Token Hash Generation
In certain methods that deal directly with one or more entities, a "token" parameter is required to verify ownership. The hash is generated by concatenating all the required fields into a single string and generating the MD5 hash for that string. Here is an example to generate token with format[Ad ID][Ad Name][Zone ID][Zone Name]
:
Ad ID = '1234' Ad Name = 'MyTestAd' Zone ID = '789' Zone Name = 'MyTestZone' token = md5('1234MyTestAd789MyTestZone') token = '971b6ebe7580f203905a0bf3fde9fd7b'
Other Articles in AdSpeed API
Documentation to use AdSpeed API to integrate AdSpeed AdServer into your own platform.
Cannot find an answer for your question? Ask our Customer Care team
Related
- Native Ad Serving
"A native ad is different from a standard advertisement. It blends in with other contents on the page. Example: a ..."
- Hash Generator
"The need to make an MD5, SHA-1, SHA-256 hash from an input string/text is a common task. Choose your hash ..."
in Ad Tools - What are popular browsers and operating systems?
"Each browser reports a text field called User Agent string. This string can be parsed for browser name, version, operating ..."
- How to convert a date string to a unix timestamp and vice versa?
"The Unix timestamp, also called "epoch", is the number of seconds since January 1, 1970. It is often used to ..."
- QuickTime and Windows Media Video Ad
"To create an advertisement using these media formats (.MOV and .WMV), please follow the steps below. On the other hand, ..."
in Ad Gallery