Class: SunshineConversationsClient::OAuthEndpointsApi
- Inherits:
-
Object
- Object
- SunshineConversationsClient::OAuthEndpointsApi
- Defined in:
- lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#authorize(client_id, response_type, opts = {}) ⇒ nil
Authorize This endpoint begins the OAuth flow.
-
#authorize_with_http_info(client_id, response_type, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Authorize This endpoint begins the OAuth flow.
-
#get_token(get_token_request, opts = {}) ⇒ GetToken200Response
Get Token This endpoint is used to exchange an authorization code for an access token.
-
#get_token_info(opts = {}) ⇒ AppResponse
Get Token Info This endpoint can be used to retrieve the app linked to the OAuth token.
-
#get_token_info_with_http_info(opts = {}) ⇒ Array<(AppResponse, Integer, Hash)>
Get Token Info This endpoint can be used to retrieve the app linked to the OAuth token.
-
#get_token_with_http_info(get_token_request, opts = {}) ⇒ Array<(GetToken200Response, Integer, Hash)>
Get Token This endpoint is used to exchange an authorization code for an access token.
-
#initialize(api_client = ApiClient.default) ⇒ OAuthEndpointsApi
constructor
A new instance of OAuthEndpointsApi.
-
#revoke_access(opts = {}) ⇒ Object
Revoke Access This endpoint is used to revoke your integration’s access to the user’s app.
-
#revoke_access_with_http_info(opts = {}) ⇒ Array<(Object, Integer, Hash)>
Revoke Access This endpoint is used to revoke your integration's access to the user's app.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ OAuthEndpointsApi
Returns a new instance of OAuthEndpointsApi.
16 17 18 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 16 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
14 15 16 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 14 def api_client @api_client end |
Instance Method Details
#authorize(client_id, response_type, opts = {}) ⇒ nil
Authorize This endpoint begins the OAuth flow. It relies on a browser session for authentication. If the user is not logged in to Zendesk they will be redirected to the login page. If the user has many Zendesk accounts, they will first be prompted to select the one they wish to integrate with. They will then be presented with an Allow/Deny dialog, describing details of the access your integration is requesting. Use ‘oauth-bridge.zendesk.com/sc` as the base URL when redirecting the user to this endpoint. “` oauth-bridge.zendesk.com/sc/oauth/authorize?response_type=code&client_id=client_id “`
27 28 29 30 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 27 def (client_id, response_type, opts = {}) (client_id, response_type, opts) nil end |
#authorize_with_http_info(client_id, response_type, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Authorize This endpoint begins the OAuth flow. It relies on a browser session for authentication. If the user is not logged in to Zendesk they will be redirected to the login page. If the user has many Zendesk accounts, they will first be prompted to select the one they wish to integrate with. They will then be presented with an Allow/Deny dialog, describing details of the access your integration is requesting. Use `oauth-bridge.zendesk.com/sc` as the base URL when redirecting the user to this endpoint. ``` oauth-bridge.zendesk.com/sc/oauth/authorize?response_type=code&client_id=client_id ```
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 40 def (client_id, response_type, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: OAuthEndpointsApi.authorize ...' end # verify the required parameter 'client_id' is set if @api_client.config.client_side_validation && client_id.nil? fail ArgumentError, "Missing the required parameter 'client_id' when calling OAuthEndpointsApi.authorize" end # verify the required parameter 'response_type' is set if @api_client.config.client_side_validation && response_type.nil? fail ArgumentError, "Missing the required parameter 'response_type' when calling OAuthEndpointsApi.authorize" end # resource path local_var_path = '/oauth/authorize' # query parameters query_params = opts[:query_params] || {} query_params[:'client_id'] = client_id query_params[:'response_type'] = response_type query_params[:'state'] = opts[:'state'] if !opts[:'state'].nil? query_params[:'redirect_uri'] = opts[:'redirect_uri'] if !opts[:'redirect_uri'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain']) unless header_params['Accept'] # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"OAuthEndpointsApi.authorize", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: OAuthEndpointsApi#authorize\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_token(get_token_request, opts = {}) ⇒ GetToken200Response
Get Token This endpoint is used to exchange an authorization code for an access token. It should only be used in server-to-server calls. Use ‘oauth-bridge.zendesk.com/sc` as the base URL when invoking this endpoint. “` POST oauth-bridge.zendesk.com/sc/oauth/token “`
101 102 103 104 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 101 def get_token(get_token_request, opts = {}) data, _status_code, _headers = get_token_with_http_info(get_token_request, opts) data end |
#get_token_info(opts = {}) ⇒ AppResponse
Get Token Info This endpoint can be used to retrieve the app linked to the OAuth token. Typically used after receiving an access token via OAuth, in order to retrieve the app’s ‘id` and `subdomain` to be used in future calls. May also be used to confirm that the credentials are still valid. Use `oauth-bridge.zendesk.com/sc` as the base URL when invoking this endpoint. “` GET oauth-bridge.zendesk.com/sc/v2/tokenInfo “`
168 169 170 171 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 168 def get_token_info(opts = {}) data, _status_code, _headers = get_token_info_with_http_info(opts) data end |
#get_token_info_with_http_info(opts = {}) ⇒ Array<(AppResponse, Integer, Hash)>
Get Token Info This endpoint can be used to retrieve the app linked to the OAuth token. Typically used after receiving an access token via OAuth, in order to retrieve the app's `id` and `subdomain` to be used in future calls. May also be used to confirm that the credentials are still valid. Use `oauth-bridge.zendesk.com/sc` as the base URL when invoking this endpoint. ``` GET oauth-bridge.zendesk.com/sc/v2/tokenInfo ```
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 177 def get_token_info_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: OAuthEndpointsApi.get_token_info ...' end # resource path local_var_path = '/v2/tokenInfo' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept'] # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'AppResponse' # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"OAuthEndpointsApi.get_token_info", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: OAuthEndpointsApi#get_token_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_token_with_http_info(get_token_request, opts = {}) ⇒ Array<(GetToken200Response, Integer, Hash)>
Get Token This endpoint is used to exchange an authorization code for an access token. It should only be used in server-to-server calls. Use `oauth-bridge.zendesk.com/sc` as the base URL when invoking this endpoint. ``` POST oauth-bridge.zendesk.com/sc/oauth/token ```
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 111 def get_token_with_http_info(get_token_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: OAuthEndpointsApi.get_token ...' end # verify the required parameter 'get_token_request' is set if @api_client.config.client_side_validation && get_token_request.nil? fail ArgumentError, "Missing the required parameter 'get_token_request' when calling OAuthEndpointsApi.get_token" end # resource path local_var_path = '/oauth/token' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept'] # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(get_token_request) # return_type return_type = opts[:debug_return_type] || 'GetToken200Response' # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"OAuthEndpointsApi.get_token", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: OAuthEndpointsApi#get_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#revoke_access(opts = {}) ⇒ Object
Revoke Access This endpoint is used to revoke your integration’s access to the user’s app. Revoking access means your integration will no longer be able to interact with the app, and any webhooks the integration had previously configured will be removed. Calling this endpoint is equivalent to the user removing your integration manually. Your integration’s ‘removeUrl` (if configured) will also be called when an integration is removed in this way.
225 226 227 228 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 225 def revoke_access(opts = {}) data, _status_code, _headers = revoke_access_with_http_info(opts) data end |
#revoke_access_with_http_info(opts = {}) ⇒ Array<(Object, Integer, Hash)>
Revoke Access This endpoint is used to revoke your integration's access to the user's app. Revoking access means your integration will no longer be able to interact with the app, and any webhooks the integration had previously configured will be removed. Calling this endpoint is equivalent to the user removing your integration manually. Your integration's `removeUrl` (if configured) will also be called when an integration is removed in this way.
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
# File 'lib/sunshine-conversations-client/api/o_auth_endpoints_api.rb', line 234 def revoke_access_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: OAuthEndpointsApi.revoke_access ...' end # resource path local_var_path = '/oauth/authorization' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept'] # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Object' # auth_names auth_names = opts[:debug_auth_names] || ['basicAuth', 'bearerAuth'] = opts.merge( :operation => :"OAuthEndpointsApi.revoke_access", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: OAuthEndpointsApi#revoke_access\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |