-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Auth Emulator support #6402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auth Emulator support #6402
Conversation
Generated by 🚫 Danger |
…eatures when using the emulator.
Test failure looks to be a transient failure, from hitting Facebook's API request limit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The terms used are really confusing here, so let's clear them up a bit.
http://localhost:9000/foo/bar/baz
<-- URL or URI, whichever is consistent with existing codelocalhost
<--- Host (a.k.a. "hostname")9000
<--- Portlocalhost:9000
<--- hostAndPort (a.k.a. as just "host" in RFC for URLs, but that's not consistent with the iOS SDK terms)
Please rename variables accordingly. e.g. requestConfiguration.emulatorURL
should be renamed to emulatorHostAndPort
, or just keep two separate variables. This will make templating much much easier to reason about.
Implement support for the auth emulator. The entry point is in an internal header for now, and will be moved to the public header when ready for release.