{"id":608,"date":"2020-07-06T16:20:21","date_gmt":"2020-07-06T08:20:21","guid":{"rendered":"https:\/\/badgameshow.com\/fly\/?p=608"},"modified":"2021-04-08T14:06:44","modified_gmt":"2021-04-08T06:06:44","slug":"line-notify-php","status":"publish","type":"post","link":"https:\/\/badgameshow.com\/fly\/line-notify-php\/","title":{"rendered":"PHP Line Notify(Line \u901a\u77e5)"},"content":{"rendered":"<h3>1.Line Notify\u5f8c\u53f0\u670d\u52d9<\/h3>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/notify-bot.line.me\/my\/services\/\" title=\"Line Notify \u5b98\u7db2\" target=\"_blank\" rel=\"noopener\">Line Notify \u5b98\u7db2<\/a><\/p>\n<h4>a.\u9ede\u64ca\u767b\u9304\u670d\u52d9<\/h4>\n<p><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2020\/07\/line.png\" alt=\"\" \/><\/p>\n<h4>b.\u8f38\u5165\u8cc7\u8a0a<\/h4>\n<h5>Callback URL \u662f\u6700\u91cd\u8981\u7684 \u7528\u4f86\u8fd4\u56decode\u8cc7\u8a0a\u4ee5\u53ca\u7d81\u5b9a\u4f7f\u7528\u8005Line Notify<\/h5>\n<h4>c.\u78ba\u8a8d\u8cc7\u8a0a<\/h4>\n<p><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2020\/07\/line_notify.jpg\" alt=\"\" \/><\/p>\n<h5>\u767b\u9304\u5f8c\u518d\u53bb\u525b\u525b\u586b\u5beb\u7684email\u6536\u4fe1\u8a8d\u8b49<\/h5>\n<h4>d.\u8a8d\u8b49\u5f8c \u6703\u591a\u51faClient ID&amp;Client Secret<\/h4>\n<p><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2020\/07\/line_notify1.jpg\" alt=\"\" \/><\/p>\n<h3>2.\u7d81\u5b9a\u4f7f\u7528\u8005\u7684Line Notify<\/h3>\n<h5>\u8b93\u4f7f\u7528\u8005\u9ede\u64ca\u9019\u4e32\u7db2\u5740<\/h5>\n<pre><code class=\"language-URL line-numbers\">https:\/\/notify-bot.line.me\/oauth\/authorize?response_type=code&amp;scope=notify&amp;response_mode=form_post&amp;client_id=9q2mFN9H8rKJJBCNslVzHI&amp;redirect_uri=https:\/\/badgameshow.com\/laichao\/test\/push.php&amp;state=123\n<\/code><\/pre>\n<h5>client_id = Line Notify\u4e0a\u7684Client ID<\/h5>\n<h5>redirect_uri = Callback URL<\/h5>\n<p><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2020\/07\/line_notify2.jpg\" alt=\"\" \/><\/p>\n<h3>3.Callback\u5f8c\u53d6\u5f97code<\/h3>\n<p>$_POST[&#8220;code&#8221;]<\/p>\n<h3>4.code\u53d6\u5f97\u5f8c\u53bb\u63dbToken<\/h3>\n<h5>redirect_uri = Callback URL<\/h5>\n<h5>client_id = Line Notify\u4e0a\u7684Client ID<\/h5>\n<h5>client_secret = Line Notify\u4e0a\u7684Client Secret<\/h5>\n<h5>code = $_POST[&#8220;code&#8221;]<\/h5>\n<pre><code class=\"language-PHP line-numbers\">$curl = curl_init();\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/notify-bot.line.me\/oauth\/token\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; array(\n'grant_type' =&gt; 'authorization_code',\n'redirect_uri' =&gt; 'https:\/\/badgameshow.com\/laichao\/test\/push.php',\n'client_id' =&gt; '9q2mFN9H8rKJJBCNslVzHI',\n'client_secret' =&gt; 'client_secret',\n'code' =&gt; $_POST[\"code\"]),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"Cookie: XSRF-TOKEN=d98fa9e6-f9d6-46e2-ac3e-4df0c7b3f834\"\n  ),\n));\n\n$response = curl_exec($curl);\ncurl_close($curl);\n$obj = json_decode($response);\n$access_token = $obj-&gt;{'access_token'};\n<\/code><\/pre>\n<h3>5.\u5229\u7528Token\u4f86\u63a8\u64ad\u8a0a\u606f<\/h3>\n<h5>Header<\/h5>\n<h5>Authorization: Bearer = $access_token<\/h5>\n<h5>body<\/h5>\n<h5>message = \u63a8\u64ad\u8a0a\u606f<\/h5>\n<h5>imageFullsize = \u5716\u7247\u5730\u5740<\/h5>\n<h5>imageThumbnail = \u5716\u7247\u5730\u5740<\/h5>\n<pre><code class=\"language-PHP line-numbers\">$curl = curl_init();\n\ncurl_setopt_array($curl, array(\n  CURLOPT_URL =&gt; \"https:\/\/notify-api.line.me\/api\/notify\",\n  CURLOPT_RETURNTRANSFER =&gt; true,\n  CURLOPT_ENCODING =&gt; \"\",\n  CURLOPT_MAXREDIRS =&gt; 10,\n  CURLOPT_TIMEOUT =&gt; 0,\n  CURLOPT_FOLLOWLOCATION =&gt; true,\n  CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,\n  CURLOPT_CUSTOMREQUEST =&gt; \"POST\",\n  CURLOPT_POSTFIELDS =&gt; array('message' =&gt; '\u5c3b\u5c3b\u5c3b\u5c3bTest'),\n  CURLOPT_HTTPHEADER =&gt; array(\n    \"Authorization: Bearer \" . $access_token\n  ),\n));\n\n$response = curl_exec($curl);\n\ncurl_close($curl);\necho $response;\n<\/code><\/pre>\n<h3>5.\u52a0\u5165\u5f8c\u7684\u8a0a\u606f<\/h3>\n<p><img decoding=\"async\" src=\"https:\/\/badgameshow.com\/fly\/wp-content\/uploads\/2020\/07\/line_notify3.jpg\" alt=\"\" \/><\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>1.Line Notify\u5f8c\u53f0\u670d\u52d9 Line Notify \u5b98\u7db2 a.\u9ede\u64ca\u767b\u9304\u670d\u52d9 b.\u8f38\u5165\u8cc7\u8a0a Callba &hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"pgc_sgb_lightbox_settings":"","footnotes":""},"categories":[98],"tags":[97,95,96],"class_list":["post-608","post","type-post","status-publish","format-standard","hentry","category-line","tag-line","tag-line-notify","tag-php"],"_links":{"self":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/608","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/comments?post=608"}],"version-history":[{"count":14,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/608\/revisions"}],"predecessor-version":[{"id":1322,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/posts\/608\/revisions\/1322"}],"wp:attachment":[{"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/media?parent=608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/categories?post=608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/badgameshow.com\/fly\/wp-json\/wp\/v2\/tags?post=608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}