自分のタスクを取得
ChatWork APIを使用し、自分のタスクを取得したい。
PHPのcurlで取得処理を実行したが、エラーが発生。
GASにて同じような処理で実行できているが、PHPでは取得ができない。
header("Content-type: text/html; charset=utf-8"); $post_data = $this->request->data(); $headers = [ 'X-ChatWorkToken: '.$post_data['token'] ]; $ch = curl_init( 'https://api.chatwork.com/v2/my/tasks' ); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); $response = curl_exec($ch); curl_close($ch); print_r(json_encode($response)); exit;
エラー
ERROR: The request could not be satisfied
環境
Vagrant、apache、PHP 7.0.33、cakephp3.3、ssl未対応
回答1件
あなたの回答
tips
プレビュー