/twitter4j-async/src/main/java/twitter4j/auth/AsyncOAuthSupport.java

http://github.com/yusuke/twitter4j · Java · 130 lines · 12 code · 13 blank · 105 comment · 0 complexity · 1a7bc404f2823de6bdf695ad290c9d32 MD5 · raw file

  1. /*
  2. * Copyright 2007 Yusuke Yamamoto
  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. package twitter4j.auth;
  17. /**
  18. * @author Yusuke Yamamoto - yusuke at mac.com
  19. * @since Twitter4J 3.0.0
  20. */
  21. public interface AsyncOAuthSupport {
  22. /**
  23. * Retrieves a request token
  24. *
  25. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | Twitter Developers</a>
  26. * @see <a href="http://oauth.net/core/1.0a/#auth_step1">OAuth Core 1.0a - 6.1. Obtaining an Unauthorized Request Token</a>
  27. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/request_token">POST oauth/request_token | Twitter Developers</a>
  28. * @since Twitter4J 3.0.0
  29. */
  30. void getOAuthRequestTokenAsync();
  31. /**
  32. * Retrieves a request token
  33. *
  34. * @param callbackURL callback URL
  35. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | Twitter Developers</a>
  36. * @see <a href="http://oauth.net/core/1.0a/#auth_step1">OAuth Core 1.0a - 6.1. Obtaining an Unauthorized Request Token</a>
  37. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/request_token">POST oauth/request_token | Twitter Developers</a>
  38. * @since Twitter4J 3.0.0
  39. */
  40. void getOAuthRequestTokenAsync(String callbackURL);
  41. /**
  42. * Retrieves a request token
  43. *
  44. * @param callbackURL callback URL
  45. * @param xAuthAccessType Overrides the access level an application requests to a users account. Supported values are read or write. This parameter is intended to allow a developer to register a read/write application but also request read only access when appropriate.
  46. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | Twitter Developers</a>
  47. * @see <a href="http://oauth.net/core/1.0a/#auth_step1">OAuth Core 1.0a - 6.1. Obtaining an Unauthorized Request Token</a>
  48. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/request_token">POST oauth/request_token | Twitter Developers</a>
  49. * @since Twitter4J 3.0.0
  50. */
  51. void getOAuthRequestTokenAsync(String callbackURL, String xAuthAccessType);
  52. /**
  53. * Retrieves a request token
  54. *
  55. * @param callbackURL callback URL
  56. * @param xAuthAccessType Overrides the access level an application requests to a users account. Supported values are read or write. This parameter is intended to allow a developer to register a read/write application but also request read only access when appropriate.
  57. * @param xAuthMode Set to reverse_auth to obtain a special request token to be used in the reverse auth process.
  58. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | Twitter Developers</a>
  59. * @see <a href="http://oauth.net/core/1.0a/#auth_step1">OAuth Core 1.0a - 6.1. Obtaining an Unauthorized Request Token</a>
  60. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/request_token">POST oauth/request_token | Twitter Developers</a>
  61. * @since Twitter4J 3.0.0
  62. */
  63. void getOAuthRequestTokenAsync(String callbackURL, String xAuthAccessType, String xAuthMode);
  64. /**
  65. * Returns an access token associated with this instance.<br>
  66. * If no access token is associated with this instance, this will retrieve a new access token.
  67. *
  68. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | dev.twitter.com - How long does an access token last?</a>
  69. * @see <a href="http://oauth.net/core/1.0a/#auth_step2">OAuth Core 1.0a - 6.2. Obtaining User Authorization</a>
  70. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/access_token">POST oauth/access_token | Twitter Developers</a>
  71. * @since Twitter4J 3.0.0
  72. */
  73. void getOAuthAccessTokenAsync();
  74. /**
  75. * Retrieves an access token.
  76. *
  77. * @param oauthVerifier OAuth verifier. AKA pin.
  78. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | dev.twitter.com - How long does an access token last?</a>
  79. * @see <a href="http://oauth.net/core/1.0a/#auth_step2">OAuth Core 1.0a - 6.2. Obtaining User Authorization</a>
  80. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/access_token">POST oauth/access_token | Twitter Developers</a>
  81. * @since Twitter4J 3.0.0
  82. */
  83. void getOAuthAccessTokenAsync(String oauthVerifier);
  84. /**
  85. * Retrieves an access token associated with the supplied request token and sets userId.
  86. *
  87. * @param requestToken the request token
  88. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | dev.twitter.com - How long does an access token last?</a>
  89. * @see <a href="http://oauth.net/core/1.0a/#auth_step2">OAuth Core 1.0a - 6.2. Obtaining User Authorization</a>
  90. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/access_token">POST oauth/access_token | Twitter Developers</a>
  91. * @since Twitter4J 3.0.0
  92. */
  93. void getOAuthAccessTokenAsync(RequestToken requestToken);
  94. /**
  95. * Retrieves an access token associated with the supplied request token and sets userId.
  96. *
  97. * @param requestToken the request token
  98. * @param oauthVerifier OAuth verifier. AKA pin.
  99. * @see <a href="http://oauth.net/core/1.0a/#auth_step2">OAuth Core 1.0a - 6.2. Obtaining User Authorization</a>
  100. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/access_token">POST oauth/access_token | Twitter Developers</a>
  101. * @since Twitter 3.0.0
  102. */
  103. void getOAuthAccessTokenAsync(RequestToken requestToken, String oauthVerifier);
  104. /**
  105. * Retrieves an access token associated with the supplied screen name and password using xAuth.<br>
  106. * In order to get access acquire AccessToken using xAuth, you must apply by sending an email to api@twitter.com — all other applications will receive an HTTP 401 error. Web-based applications will not be granted access, except on a temporary basis for when they are converting from basic-authentication support to full OAuth support.<br>
  107. * Storage of Twitter usernames and passwords is forbidden. By using xAuth, you are required to store only access tokens and access token secrets. If the access token expires or is expunged by a user, you must ask for their login and password again before exchanging the credentials for an access token.
  108. *
  109. * @param screenName the screen name
  110. * @param password the password
  111. * @see <a href="https://dev.twitter.com/docs/auth/oauth/faq">OAuth FAQ | dev.twitter.com - How long does an access token last?</a>
  112. * @see <a href="https://dev.twitter.com/docs/oauth/xauth">xAuth | Twitter Developers</a>
  113. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/oauth/access_token">POST oauth/access_token | Twitter Developers</a>
  114. * @since Twitter 3.0.0
  115. */
  116. void getOAuthAccessTokenAsync(String screenName, String password);
  117. }