curl https://xxx.com/manage/json-rpc/xxxxxxx --header 'xxxxcxxxx-API-Key: 00000000' --data '{"jsonrpc":"2.0", "id":1, "method": "Push.send", "params":{"pushProjectId":"XXXXXXX", "platform":"ios", "target":"debugger", "buildType":"debug", "message":"manage sample", "json":"{\"url\":\"http://www.baidu.com\"}", "deviceIdList":["DDDDDDDDDDDDDDD"]}}'
如何利用PHP發送這條curl指令? 網上研究了半天毫無進展
回複內容:
curl https://xxx.com/manage/json-rpc/xxxxxxx --header 'xxxxcxxxx-API-Key: 00000000' --data '{"jsonrpc":"2.0", "id":1, "method": "Push.send", "params":{"pushProjectId":"XXXXXXX", "platform":"ios", "target":"debugger", "buildType":"debug", "message":"manage sample", "json":"{\"url\":\"http://www.baidu.com\"}", "deviceIdList":["DDDDDDDDDDDDDDD"]}}'
如何利用PHP發送這條curl指令? 網上研究了半天毫無進展
首先我覺得你的 --data 的內容應該寫錯了
然後你要麼直接用 exec : http://php.net/manual/zh/function.exec.php
要麼就直接用 PHP 的 cURL 庫: http://php.net/manual/zh/function.curl-setopt.php
$curl = curl_init('https://xxx.com/manage/json-rpc/xxxxxxx');curl_setopt( $curl, CURLOPT_HTTPHEADER, array("xxxxcxxxx-API-Key: 00000000") );curl_setopt( $curl, CURLOPT_POSTFILESD, array( "jsonrpc" => "2.0" ) );curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true);$res = curl_exec( $curl );curl_close( $curl );