OIDScopes.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*! @file OIDScopes.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  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. /*! @brief Scope that indicates this request is an OpenID Connect request.
  18. @see http://openid.net/specs/openid-connect-core-1_0.html#AuthRequestValidation
  19. */
  20. extern NSString *const OIDScopeOpenID;
  21. /*! @brief This scope value requests access to the End-User's default profile Claims, which are:
  22. name, family_name, given_name, middle_name, nickname, preferred_username, profile, picture,
  23. website, gender, birthdate, zoneinfo, locale, and updated_at.
  24. @see http://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims
  25. */
  26. extern NSString *const OIDScopeProfile;
  27. /*! @brief This scope value requests access to the email and email_verified Claims.
  28. @see http://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims
  29. */
  30. extern NSString *const OIDScopeEmail;
  31. /*! @brief This scope value requests access to the address Claim.
  32. @see http://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims
  33. */
  34. extern NSString *const OIDScopeAddress;
  35. /*! @brief This scope value requests access to the phone_number and phone_number_verified Claims.
  36. @see http://openid.net/specs/openid-connect-core-1_0.html#ScopeClaims
  37. */
  38. extern NSString *const OIDScopePhone;