Sha256: b8555f7d019790f73faf47ade1f8664a6575778d7c21027b9ca56acf5e8ae45c

Contents?: true

Size: 1.19 KB

Versions: 14

Compression:

Stored size: 1.19 KB

Contents

<?php
	define("DEBUG",false);
	
	$username = "kewelta";
	$password = "kewelta";	
	$timestamp  = round(microtime(true) * 1000);
	$hash = md5(md5($password).$timestamp);
		
	$url = "https://n29.epom.com/rest-api/banner/create.do";	
	/*Getting the full path to your file*/
	$file_name_with_full_path = realpath('300x250.gif');
	/*Specifying MIME type of the file*/
	$filetype = "image/gif";
	
	$post_data = array(
		"hash" => $hash,
		"timestamp" => $timestamp,
		"username" => $username,
		"placementType" => "SITE_PLACEMENT",
		"campaignId" => "1261",
		"active" => "true",
		"name" => "test_banner_1",
		"weight" => "1",
		"bannerType" => "LOCAL_FILE",
		"imageBannerLink" => "http://qwe.com",
		"imageFile" => "@$file_name_with_full_path;type=$filetype",
		"url" => "http://qwe.com",
		"adUnitId" => "1"
	);
	
	$options = array(
		CURLOPT_URL => $url,
		CURLOPT_SSL_VERIFYPEER => false,
		CURLOPT_POST => true,		
		CURLOPT_POSTFIELDS => $post_data, 
		CURLOPT_HTTPHEADER => array("Content-type: multipart/form-data"),		
		CURLOPT_RETURNTRANSFER => true
	);
	
	$curl = curl_init();
	
	curl_setopt_array($curl,$options);	

	echo curl_exec($curl);
	
	if(DEBUG){
		echo "\n\n";
		echo $url;
		print_r($post_data);
	}		
?>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
epom-0.8.5 test/test.php
epom-0.8.4 test/test.php
epom-0.8.1 test/test.php
epom-0.8 test/test.php
epom-0.7.2 test/test.php
epom-0.7 test/test.php
epom-0.6.2 test/test.php
epom-0.6 test/test.php
epom-0.5 test/test.php
epom-0.4.1 test/test.php
epom-0.4 test/test.php
epom-0.3.3 test/test.php
epom-0.3 test/test.php
epom-0.1.0 test/test.php