2017-07-29 180 views
-1

我想請與捲曲和API密鑰和API祕密如何使用捲曲與API密鑰和API祕密檢查許可密鑰

這是返回值

在成功處理許可證密鑰,許可證管理將返回一個純文本

消息,將有類似於下面的二,三線:

成功許可證密鑰WPLICMxx4bc2xxx1e471 或 錯誤密鑰是INV alid

示例PHP代碼 下面是一個示例PHP代碼,展示瞭如何通過 創建許可證的API

/*** Mandatory data ***/ 
// Post URL 
$postURL = ""; 
// The Secret key 
$secretKey = "597c038865e788.30430360"; 

/*** Optional Data ***/ 
$firstname = "John"; 
$lastname = "Doe"; 
$email = "[email protected]"; 

// prepare the data 
$data = array(); 
$data['secret_key'] = $secretKey; 
$data['slm_action'] = 'slm_create_new'; 
$data['first_name'] = $firstname; 
$data['last_name'] = $lastname; 
$data['email'] = $email; 

// send data to post URL 
$ch = curl_init ($postURL); 
curl_setopt ($ch, CURLOPT_POST, true); 
curl_setopt ($ch, CURLOPT_POSTFIELDS, $data); 
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true); 
$returnValue = curl_exec ($ch); 

// Process the return values 
//var_dump($returnValue); 

我想請與捲曲和API密鑰和API祕密

的許可證密鑰
+0

誰downvoted,請解釋。這是一個體面的問題? – ggdx

+0

我想檢查許可證密鑰與捲曲和API密鑰和API的祕密 –

回答

0

您需要設置的HTTPHeader,用定義鍵(S),所以像

curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'user: UserName', 'pass: blahPasswordHere' ));

userpass將需要更改爲任何接收服務器正在尋找

+0

你可以請爲我的代碼 –

+0

我不是在這裏爲你做你的工作。如果你不知道,這是你作爲開發人員學習你的工藝的角色。 CURL並不困難。 – ggdx