aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Auth
Commit message (Collapse)AuthorAge
...
* Adds automated test for manual phone sign-inGravatar Ivan2017-10-13
|
* new user popup toggleGravatar Ivan2017-10-10
|
* new user popup toggleGravatar Ivan2017-10-10
|
* Prepare to release FirebaseAuth 4.3.0 (#345)Gravatar Xiangtian Dai2017-10-09
| | | | | | | | | | | | * Update Auth version to 4.3.0 * Revert "Removes user meta from public API (#308)" This reverts commit 1602391bf8a9b6d3247716e3bf7b9f27dec8d2b6. * Revert "Removes metadata from swift sample (#318)" This reverts commit 804ff523a20072fb958e9137c76b9c0e14dda870.
* Add new user popup to sample appGravatar Ivan2017-10-06
|
* Add new user popup to sample appGravatar Ivan2017-10-06
|
* Adds new user popup to sample app.Gravatar Ivan2017-10-06
|
* Simplifies logic to post auth state change notifications, which is also ↵Gravatar Xiangtian Dai2017-10-03
| | | | applied more consistently now. (#325)
* Automatically signs user out if the token is no longer valid. (#323)Gravatar Xiangtian Dai2017-10-02
|
* Disambiguates known errors from web context (#322)Gravatar Zsika Phillip2017-10-02
| | | | | | * Disambiguates known errors from web context - Disambiguates known errors possibly returned by verifyPhoneNumber:UIDelegate:completion:
* Add operation phone auth (#309)Gravatar Zsika Phillip2017-09-27
| | | | | | | | | | | | | | | | | | * Adds operation to verify PhoneNumber requests * Improvements and unit tests * Fixes typo * Addresses comments - Removes the FIRAuthOperation class. - Defines the FIRAuthOperationType as an enum in a class of the same name. - Passes the FIRAuthOperationType value down to the verifyPhoneNumber RPC where it is translated to a string. * Fixes unit tests * Actually fixes the unit tests.
* Removes metadata from swift sample (#318)Gravatar Zsika Phillip2017-09-26
| | | Removes metadata from swift sample until it is made public again.
* - Saves user metadata in keychain. (#305)Gravatar Xiangtian Dai2017-09-26
| | | | - Adds Swift stubs for the new API. - Shows the `isNewUser` bit in the sample app.
* Removes user meta from public API (#308)Gravatar Zsika Phillip2017-09-22
| | | | | | | | | | * Removes user meta from public API * remove unused import removes unused import * Removes Swift Name
* User meta data (#292)Gravatar Zsika Phillip2017-09-21
| | | | | | | | | | | | * Add user metadata * Small improvements * Addresses comments * Fixes broken tests Adds FIRUserMetadata to unbrella file.
* Fixes a threading issue when calling back with an error for phone number ↵Gravatar Xiangtian Dai2017-09-21
| | | | | auth. (#298) Also changes the sample app to be able to test this case.
* FIxes Swift name for the new protocol. (#289)Gravatar Xiangtian Dai2017-09-19
|
* Consolidate AuthSamples into main Firebase Xcode project (#288)Gravatar Paul Beusterien2017-09-19
|
* Removes unused Fir_authPhoneNumber (#277)Gravatar Zsika Phillip2017-09-17
| | | Removes references of unused Fir_authPhoneNumber and accompanying class.
* Modifies unit tests to accommodate event ID check (#270)Gravatar Zsika Phillip2017-09-14
| | | | | | | | | | * Modifies unit tests to accommodate event ID check * Extracts event ID from outgoing URL * Addresses comments Checks that the URL is rejected by the callback matcher without the event ID.
* Adds a check for custom scheme in plist for phone number auth reCAPTCHA. (#256)Gravatar Xiangtian Dai2017-09-13
| | | Also rewrites phone number auth reCAPTCHA tests.
* Implements web view for presenting Auth web content on iOS 7 and 8. (#253)Gravatar Xiangtian Dai2017-09-12
| | | | Also (hopefully) fixes thread safety issues in presenting Auth web content.
* ReCAPTCHA verification error handling (#241)Gravatar Zsika Phillip2017-09-10
| | | | | | | | * reCAPTCHA error handling * Improvements * Addresses comments
* Deprecates the old phone number auth method. (#236)Gravatar Xiangtian Dai2017-09-06
|
* Fixes Auth URL presenter: (#239)Gravatar Xiangtian Dai2017-09-06
| | | | | | - kinda works on iOS 8-; - calls back with cancellation error correctly on 'Done' button; - cleans up upon completion.
* Removes canHandleURL from FIRAuthInternal (#235)Gravatar Zsika Phillip2017-09-05
| | | | | | | | * Removes canHandleURL from FIRAuthInternal Removes canHandleURL from FIRAuth_Internal and makes small modification to FIRPhoneAuthProvider unit test. * Addresses comment
* Adds app verification alternative (#228)Gravatar Zsika Phillip2017-09-04
| | | | * Adds app verification alternative
* Swizzles APNs token error app delegate method for faster turnaround. (#226)Gravatar Xiangtian Dai2017-09-01
| | | Also removes the server request in case the token is missing.
* Add FirAuthUrlPresenter (#222)Gravatar Zsika Phillip2017-09-01
| | | * Adds FIRAuthURLPResenter and FIRAuthUIDelegate
* Adds missing unit tests to the Example project and fixes one test case. (#224)Gravatar Xiangtian Dai2017-08-30
|
* Silences compiler warnings in the Auth test file from #207 . (#219)Gravatar Xiangtian Dai2017-08-28
|
* fixes request URL (#218)Gravatar Zsika Phillip2017-08-25
|
* Add get Auth domain RPC (#214)Gravatar Zsika Phillip2017-08-24
| | | | | | | | | | * Add get Auth domain RPC * Fixes indentation * Addresses comments * ran tests on Example/Firebase.xcodeproj
* Adds reCAPTCHA Token (#211)Gravatar Zsika Phillip2017-08-23
| | | | * Adds reCAPTCHA Token to the "send verification code" request.
* Forwards app delegate's openURL invocations to `FIRAuth`. (#207)Gravatar Xiangtian Dai2017-08-21
|
* Handles MISSING_EMAIL error from server. (#187)Gravatar Xiangtian Dai2017-08-11
|
* Fixes an incorrect assumption of Auth server error message. (#179)Gravatar Xiangtian Dai2017-08-04
| | | Also allows the Auth sample app to test all combination of `handleCodeInApp` and continue URL.
* APNs token handling improvements. (#157)Gravatar Xiangtian Dai2017-07-28
| | | | | | | | | | | | | * APNs token handling improvements. - Calls VerifyClient without token anyway if the APNs token cannot be retrieved. This allows server to use discretion if needed in future. The developer will receive the same error as before. - Moves token formatting code to the token class itself to make the main logic in the provider class more clear. This also eliminates duplicated code in the sample app. * Adds a comment about a string constant used in test.
* Merge from private/auth-master (#159)Gravatar Xiangtian Dai2017-07-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds passing state and continue URL in OOBCodes actions. (#82) * Adds actionCodeSettings class (#83) * Adds FIRActionCodeSettings class * Removes iOSAppStoreId to reflect update spec. * Adds “reset password in app” to sample app (#84) * Adds “reset password in app” to sample app * Addresses comments * Addresses comments * Adds @param documentation for actionCodeSettings (#85) Adds @param documentation for actionCodeSettings in FIRGetOOBConfirmationCodeRequest. * Adds request configuration class Adds a class that will comprise of all configurations needed to make a request to the Firebase Auth backend; including APIKey and Language code in the future. * Addresses comments. * Adds Setting Language Add Setting Language Feature to Firebase Auth. - Only adds support for two languages (English and Spanish) in this change. (Also supports two languages in test), more to come after this change is accepted. - For now sample app tests language setting only when using “reset password in app” option, the email sent will be in the current app language. Additional tests to come after change is accepted. * Amends code for unit tests Will add more comprehensive testing when code accepted. * Ecodes strings files in UTF-8 * Addresses comments * Addresses comments * Remove comments in .strings * Adds remaining TC languages to Firebase Auth. * Add line break to .strings files * remove language code english fallback Remove the fallback that sends “en” as the language code to the backend if no language code is specified. * addresses comment * Fixes FIRSecureToken Crash Integrates FIRSecureTokenService and FIRSecureTokenRequest with FIRAuthRequestConfiguration. * Addresses comment * Add auth language input Adds Auth language input to the Sample App in preparation for manual testing. * removes unnecessary comment * address comments * Add app language option Allow user to set the current app language code as the auth language code. This is in preparation for manual testing before release. * Addresses Comment * Adds missing continue URI Adds missing continue URL to Firebear error handling. * Remove unused line Removes unused line from FIRPhoneAuthProvider.m * Moves the new public header to the right place. * Fixes broken macOS build. * Removes trailing spaces. * Addresses review comments.
* Use modulemap to fix exposure of FirebaseCore's internal headers (#121)Gravatar Paul Beusterien2017-07-10
|
* Group public headers into Public directories (#112)Gravatar Paul Beusterien2017-06-29
|
* Adds NSSecureCoding unit tests for FIRUser (#74)Gravatar Zsika Phillip2017-06-07
| | | * Adds unit tests for NSSecureCoding for FIRUser
* Add Foundation import so TARGET_OS_IOS or other TARGET_OS_* gets defined (#71)Gravatar Paul Beusterien2017-06-06
|
* Fix build break from macOS - Auth merge (#59)Gravatar Paul Beusterien2017-06-02
|
* macOS (#38)Gravatar Mathew Huusko V2017-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Example/Core: create macOS app/tests target * Example/Core: Core_Example/Tests -> Core_Example/Tests_iOS * Example/Core: macOS building/tests passing * Example/Database: separate iOS/macOS targets * BuildFrameworks: macOS * .travis.yml, test.sh: AllUnitTests -> AllUnitTests_iOS * test.sh: add AllUnitTests_macOS * Example/Storage: Example/Tests->_iOS * Example/Storage: macOS * test.sh: try to prevent double error 65 * test.sh: build before test * Example/Auth|Messaging: -> _iOS * Example/Auth: macOS build * Example/Auth: macOS passing * Example/Firebase: pod de/re-integrate; fix static DerivedData references; copy phase for OCMock * Example/Firebase: manually copied OCMock, Products Dir vs. Frameworks * Example/Firebase: copied OCMock, prevent header removal * Example/Storage: integration tests sdk fix * Example/Auth: macOS exclude FIRAuthAppCredentialManager; cleanup * Firebase/Core: remove nullability annotation * Firebase/Core|Database: correct TARGET_X usage for correctness and anticipation of OS_WATCH|TV branches * build.swift: style fix * Firebase/Core: FIRLogger: fix macOS intermittent va_list error
* Handle missing email error (#54)Gravatar Zsika Phillip2017-06-01
| | | | | Adds appropriate error handling for missing email in the createUserWithEmail:password:completion: flow. Also fixes a few typos.
* Adds GoogleService-Info_multi.plist to the Auth Sample (#33)Gravatar Xiangtian Dai2017-05-25
| | | | | | | | | * Adds GoogleService-Info_multi.plist to the Auth Sample so it no longer crashes on the settings view. * Also relaxes requirement of time differences in unit tests because Travis is slower. * Relaxes requirement of time difference because unit tests executes slower on Travis. * Applies the same relaxation on all time comparisons.
* InitialGravatar Paul Beusterien2017-05-15