概要
access_token は公式アカウントのグローバルにユニークなチケットです。公式アカウントは各インターフェースを呼び出すときに access_token を使用する必要があります。開発者はそれを適切に保存する必要があります。 access_token ストレージ用に少なくとも 512 文字のスペースを予約する必要があります。 access_token の有効期間は現在 2 時間であり、定期的に取得を繰り返すと最後の access_token が無効になります。
access_tokenの取得
1 2 3 4 5 6 7 8 9 10 11 12 13 |
define("APPID", "あなたのアプリID"); define("APPSECRET", "あなたのアプリシークレット ");
$token_access_url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" "&secret=" . $res = file_get_contents($token_access_url); //ファイルのコンテンツを取得するか、ネットワークリクエストのコンテンツを取得します//エコー $res; $result = json_decode($res, true); //JSON 形式の文字列を受け入れ、PHP 変数に変換します $access_token = $result['access_token']; echo $access_token;
php>
|