You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.3 KiB

6 years ago
6 years ago
  1. /*
  2. * Copyright 2017 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. #pragma mark - Provider ID constants
  18. // Declared 'extern' in FIRGoogleAuthProvider.h
  19. NSString *const FIRGoogleAuthProviderID = @"google.com";
  20. // Declared 'extern' in FIRFacebookAuthProvider.h
  21. NSString *const FIRFacebookAuthProviderID = @"facebook.com";
  22. // Declared 'extern' in FIREmailAuthProvider.h
  23. NSString *const FIREmailAuthProviderID = @"password";
  24. // Declared 'extern' in FIRTwitterAuthProvider.h
  25. NSString *const FIRTwitterAuthProviderID = @"twitter.com";
  26. // Declared 'extern' in FIRGitHubAuthProvider.h
  27. NSString *const FIRGitHubAuthProviderID = @"github.com";
  28. // Declared 'extern' in FIRPhoneAuthProvider.h
  29. NSString *const FIRPhoneAuthProviderID = @"phone";
  30. // Declared 'extern' in FIRGameCenterAuthProvider.h
  31. NSString *const FIRGameCenterAuthProviderID = @"gc.apple.com";
  32. #pragma mark - sign-in methods constants
  33. // Declared 'extern' in FIRGoogleAuthProvider.h
  34. NSString *const FIRGoogleAuthSignInMethod = @"google.com";
  35. // Declared 'extern' in FIREmailAuthProvider.h
  36. NSString *const FIREmailPasswordAuthSignInMethod = @"password";
  37. // Declared 'extern' in FIREmailAuthProvider.h
  38. NSString *const FIREmailLinkAuthSignInMethod = @"emailLink";
  39. // Declared 'extern' in FIRTwitterAuthProvider.h
  40. NSString *const FIRTwitterAuthSignInMethod = @"twitter.com";
  41. // Declared 'extern' in FIRFacebookAuthProvider.h
  42. NSString *const FIRFacebookAuthSignInMethod = @"facebook.com";
  43. // Declared 'extern' in FIRGitHubAuthProvider.h
  44. NSString *const FIRGitHubAuthSignInMethod = @"github.com";
  45. // Declared 'extern' in FIRPhoneAuthProvider.h
  46. NSString *const FIRPhoneAuthSignInMethod = @"phone";
  47. // Declared 'extern' in FIRGameCenterAuthProvider.h
  48. NSString *const FIRGameCenterAuthSignInMethod = @"gc.apple.com";