I am currently publishing my app for user testing using Expo, and it works fine when Android users scan the QR code. However when my friend on iOS tries to use the QR code on their Expo Go app(they are logged in), they get the following error: "The Operation couldn't be completed. EXNetwork Error 403". This also happens when I email my friend the link to the project.
Asked
Active
Viewed 1.2k times
16
-
I have the same issue as well. I think it is recent. Was there a bug on or forum entry on this one? – Archimedes Trajano Apr 01 '21 at 15:26
3 Answers
15
It seems like expo changed something recently to conform with the guidelines of Apple.
There are four steps you need to do when you have an app that is currently only being published on your account and others can't access it.
- Create an organization in expo
- Add your co-workers to your organization (they need to have an expo account)
- In your app.json add the slug of your organization under expo and then owner
- Republish your app
app.json
{
"expo": {
"name": "NAME",
"slug": "name",
"owner": "ORGANIZATION_NAME",
...
}
}
Optionally, you could also convert your personal account to an organization.

IceRevenge
- 1,451
- 18
- 33
12
I had a similar issue, which was resolved by accepting a new policy on the Apple developer website.
The error I got:
Apple 403 detected - Access forbidden

pors
- 3,856
- 36
- 33
9
Encountered the same issue and this worked for me.
- visit the published URL of your project
- go to the settings page - members - invite member
- input the member email
- member has to accept invitation upon receive
Note! member has to create an account with expo. steps:
- in the expo go ios app, navigate to the profile
- create an account

Selete69
- 91
- 3
-
This solved my issue. And super easy. Provided you are sharing a published app and someone went and got the Expo Go app and quickly made an account and snapped a shot of the QR code. This would result in the 403 error. To fix it in that case, it is exactly as you laid out here. Simply invite that member. Voila! – mrwpress Oct 28 '21 at 14:59