|
|
จะแปลงเป็น java ยังไงครับ code php ผมอยากแปลเป็น Google script |
|
|
|
|
|
|
|
public function actionCallback()
{
$client_id = 'ZtAdgYvewFgwh4BCda7HyOUZ';
$client_secret = 'Cr6zqdWdWRPm6CgfU7bnas7IWp2gxouoUfbiROHwXQHZDk7';
$api_url = 'https://notify-bot.line.me/oauth/token';
$callback_url = 'http://localhost/yii2-maekha/web/index.php?r=site/callback';
parse_str($_SERVER['QUERY_STRING'], $queries);
//var_dump($queries);
$fields = [
'grant_type' => 'authorization_code',
'code' => $queries['code'],
'redirect_uri' => $callback_url,
'client_id' => $client_id,
'client_secret' => $client_secret
];
try {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_POST, count($fields));
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$res = curl_exec($ch);
curl_close($ch);
if ($res == false)
throw new Exception(curl_error($ch), curl_errno($ch));
$json = json_decode($res);
//var_dump($json);
} catch(Exception $e) {
throw new Exception($e->getMessage());
//var_dump($e);
}
return $this->render('callback', [
'json' => $json
]);
}
Tag : JAVA, Laravel Framework
|
|
|
|
|
|
Date :
2021-03-11 13:06:13 |
By :
naiall |
View :
621 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากแปลง ก็ต้องศึกษา ไวยกรณ์ และ function ของ java ให้เข้าใจก่อน
ถ้าขี้เกียจก็จ้่างเขาเอา
หรือไม่ก็ เอาคำสั่งไป ค้นใน google
มันยากแค่ภาษาแรก ภาษาต่อไปมันง่ายแล้ว มี algorithm อยู่แล้วก็แค่ไม่ขี้เกียจหา เท่านั้น
|
|
|
|
|
Date :
2021-03-11 13:56:58 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|