ios – instagram沙箱用户邀请已发送但用户在哪里接受?

我正在使用Instagram并且能够将邀请发送给我的第二个用户.
但是,当第二个用户登录此链接时:
https://www.instagram.com/oauth/authorize/?client_id=XXXXXXX&redirect_uri=yyyyyyyyyyy://&response_type=token

他们得到了

{“code”:403,“error_type”:“OAuthForbiddenException”,“error_message”:“您不是此客户端的沙箱用户”}

我还以该用户身份登录到官方Instagram应用程序,但我仍无法接受邀请.沙箱用户如何接受邀请才能使用我的应用?

解决方法

弄清楚了.

它说的是I did read the doc:

“To manage the list of sandbox users for a given app,you can go to
the Sandbox tab in your client configuration screen. There you will be
able to add and remove the sandbox users for your app,up to a maximum
of 10 users. Note that the admin of the app is always a sandbox user,
so you can effectively add up to 9 additional ‘sandbox users’.

After adding users to the list,they will have to accept your
invitation before actually becoming sandbox users. To accept the
invitation,they can go to the ‘Sandbox Invites’ button on the top bar
of the developer site. In the ‘Sandbox Invites’ page people can accept
or reject invitations,and also stop being sandbox users for a given
app.”

我尝试了但它没有用 – 可能是由于延迟. 5分钟后,我能够看到邀请并通过.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...