我需要发送这个:
POST http://api.outbound.io/api/v1/identify
Content-Type: application/json
{
"api_key": "MY_API_KEY",
"user_id": "MY_UNIQUE_USER_ID",
"traits" : {
"email" : "dhruv@outbound.io",
"name" : "Dhruv Mehta",
"phone" : "650xxxyyyyy"
}
}
我从未做过这样的事情,我做了很多研究,但我找不到如何将这些参数发送到该网址
我希望你们能帮我一个例子,最好的问候!
答案 0 :(得分:20)
经过大量研究后,我发现了如何做到这一点......
1.-使用
App::uses('HttpSocket', 'Network/Http'); // you should put this on your controller
2.-这是你的功能
$HttpSocket = new HttpSocket();
3.-这里是你要通过POST发送的数据(在这个例子中,我将使用我使用的变量..你可以替换它们,添加更多或删除一些......这取决于你想要的信息发送)
$data = array(
"api_key" => "API KEY",
"user_id" => $idUser,
"event" => "other",
"extra" => array(
"course" => $course,
"price"=> $price )
);
3.-您设置标题
$request = array(
'header' => array('Content-Type' => 'application/json',
),
);
4.-json_encode it
$data = json_encode($data);
5.-你在哪里发送Post To?,哪个数据?,请求类型?,这样做
$response = $HttpSocket->post('http://api.yourweburl.com/api/', $data, $request);
* .-您可以看到取消注释此代码段的响应
//pr($response->body());
* .-最后,如果你想在完成所有事情后重定向某个地方......就这样做......
$this->redirect(array('action' => 'index'));
你应该有这样的东西。
public function actiontooutbound($idUser, $course, $price){
$HttpSocket = new HttpSocket();
$data = array(
"api_key" => "API KEY",
"user_id" => $idUser,
"event" => "other",
"extra" => array(
"course" => $course,
"price"=> $price )
);
$request = array(
'header' => array(
'Content-Type' => 'application/json',
),
);
$data = json_encode($data);
$response = $HttpSocket->post('http://api.outbound.io/api/v1/track', $data, $request);
// pr($data);
//pr($response->body());
$this->redirect(array('action' => 'index'));
}
这是你从另一个函数调用这个函数的方法(以防万一)
$this->actiontooutbound($idUser, $course, $price);
如果您有任何问题,现在让我很乐意为您提供帮助;)
答案 1 :(得分:-1)
如果你想在PHP中这样做,我会使用curl。以下是未经测试的,所以不能保证它是正确的:
$json = array(
'api_key' => 'My_API_KEY',
'user_id' => 'MY_UNIQUE_USER_ID',
'traits' => array(
'email' =< 'dhruv@outbound.io',
'name' => 'Dhrub Mehta',
'phone' => '650xxxyyyyy'
)
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADERS, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_URL, 'http://api.outbound.io/api/v1/identify');
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($json));
curl_setopt($ch, CURLOPT_POST, 1);
$results = curl_exec($ch);
if (curl_errno($ch)) {
debug(curl_error($ch));
} else {
curl_close($ch);
}
return $results;