joomla モジュールでアクセス トークンを使用して、ページ/グループ ウォール フィードの投稿を取得し、ユーザーの Web サイト ページに表示します。ユーザーは、joomla サイトでモジュールを使用する前に、自分のサイトから Facebook アプリケーションによってアクセス トークンを生成しました。
私が望むもの-「ユーザーの操作なしで、既存の有効期限が切れていない/期限切れの60日間のトークンの有効期限を延長したい」.
このURLトークンの呼び出しを拡張できるというWebから得たもの-
https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=APP_SECRET&grant_type=fb_exchange_token&fb_exchange_token=EXISTING_ACCESS_TOKEN
トークンを拡張するために行ったいくつかのテストで、これらの結果が得られました:(
1.I created short lived access token in client side and extended it to 60 days by the above url
2.I call above url again by passing that 60 days token as "fb_exchange_token" value to extend token again.I got different 60 days token but issue and expire date is same as before, not extended!!
3.I again repeated test 1 and got a token which also have same issue and expire date! as I wanted to have the expire date extended as my test 2 is failed.
では、どうすれば私が望むものを達成できますか?? 58 日目または有効期限が切れた後に 60 日間のトークンを延長する計画があります。