0
我必須開發一個應用程序來交互inmobi API。我嘗試了一些代碼,但失敗了。請幫助我如何使用API。inmobi API使用示例
它的API文檔的URL爲http://developer.inmobi.com/wiki/index.php?title=API_Guide_for_Onboarding_Publishers#API_Key
我想創建會話,我需要在頭髮送的值。我已經嘗試使用後數據和標題以下代碼,但失敗。沒有得到所需的輸出。
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api-sandbox.inmobi.com/v1.0/generatesession/generate");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
$data = array(
'username' => 'xxxxxxx',
'password' => 'xxxxx',
'secretKey' => 'xxxx',
'Content-type'=> 'application/json'
);
//curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, $data);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
echo "<pre>";
print_r($info);
如果我有問題的方式,那麼請爲它建議一些合適的方法。 非常感謝