★アプリレビュー
手順がよくわからなかったのでメモ。

・アプリレビュー
https://developers.facebook.com/apps/1718184088469400/review-status/

・スクリーンショットが必要。
・テストユーザを指定してください。
 という事で、本番アプリのテストユーザを指定
・ただ、本番アプリのテストユーザは、まだpages_messaging自体がないので、本番ページとやり取りできない。
・なので、テストユーザで作成したページを使ってもらう想定。でよいのか?
・アプリレビューでは、本物ページしか選べない。から担当者に伝えるすべがないが。。

レビュー用に本番アプリでテストユーザで作成したページを対応させる手順は以下。
https://developers.facebook.com/bugs/230322797329131/?hc_location=ufi

1) Create test user by toggling the Authorize test users for this app and grant permissions “manage_pages” and “page_messaging”.
2) Use the Edit Button and get an access token for this user (using v2.6). Please save this for later.
3) Use edit button to login as the test user
4) After login, create page as the test user
5) Use the user access token for the test user to get the page access token for this user. You can do this with the following call:
https://graph.facebook.com/v2.6/me/accounts?access_token=

6) Use this page access token to link your Facebook Application with your Page.
https://graph.facebook.com/v2.6/me/subscribed_apps?method=POST&access_token=

7) After you have followed these steps you will receive RTU updates to your Test Page and be able to message your Test User from your Test Page.

最後のこれも必要だった。ページアクセストークンの有効期限が短いので、多分レビュー前に切れてしまう。
GET /oauth/access_token?
grant_type=fb_exchange_token&
client_id={app-id}&
client_secret={app-secret}&
fb_exchange_token={short-lived-token}

・本番アプリ上のページアクセストークンを、上記テストユーザのページのページアクセストークンに変えた。
・で、申請。

で、良いのか。。

★開発環境
https://developers.facebook.com/apps/1718184088469400/dashboard/
メニューから「テストアプリ」が作成できる。

製品を追加で、「Messenger」を追加。
後の設定は同じ。

使い方としては、

本番アプリ – 本番ページ – 自分、他(レビュー後、無制限)
      – テストユーザページ – テストユーザ
テストアプリ – 開発ページ – 自分 ※アプリレビュー無いから、他は、個別に招待した人
– テストユーザページ – テストユーザ

という感じかな。
開発ページに対する、開発アプリの作成は不要。