OAuth2Constants.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012-2013 ownCloud Inc.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.authentication;
  19. /**
  20. * Constant values for OAuth 2 protocol.
  21. *
  22. * Includes required and optional parameter NAMES used in the 'authorization code' grant type.
  23. *
  24. * @author David A. Velasco
  25. */
  26. public class OAuth2Constants {
  27. /// Parameters to send to the Authorization Endpoint
  28. public static final String KEY_RESPONSE_TYPE = "response_type";
  29. public static final String KEY_REDIRECT_URI = "redirect_uri";
  30. public static final String KEY_CLIENT_ID = "client_id";
  31. public static final String KEY_SCOPE = "scope";
  32. public static final String KEY_STATE = "state";
  33. /// Additional parameters to send to the Token Endpoint
  34. public static final String KEY_GRANT_TYPE = "grant_type";
  35. public static final String KEY_CODE = "code";
  36. /// Parameters received in an OK response from the Token Endpoint
  37. public static final String KEY_ACCESS_TOKEN = "access_token";
  38. public static final String KEY_TOKEN_TYPE = "token_type";
  39. public static final String KEY_EXPIRES_IN = "expires_in";
  40. public static final String KEY_REFRESH_TOKEN = "refresh_token";
  41. /// Parameters in an ERROR response
  42. public static final String KEY_ERROR = "error";
  43. public static final String KEY_ERROR_DESCRIPTION = "error_description";
  44. public static final String KEY_ERROR_URI = "error_uri";
  45. public static final String VALUE_ERROR_ACCESS_DENIED = "access_denied";
  46. }