-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathOAuthRequest.java
49 lines (43 loc) · 1.27 KB
/
OAuthRequest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.twilio.http;
public class OAuthRequest extends Request {
protected static final String DEFAULT_REGION = "us1";
public static final String QUERY_STRING_DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss";
public static final String QUERY_STRING_DATE_FORMAT = "yyyy-MM-dd";
private String clientId;
private String clientSecret;
/**
* Create a new API request.
*
* @param method HTTP method
* @param url url of request
*/
public OAuthRequest(final HttpMethod method, final String url) {
super(method, url);
}
/**
* Create a new API request.
*
* @param method HTTP method
* @param domain Twilio domain
* @param uri uri of request
*/
public OAuthRequest(final HttpMethod method, final String domain, final String uri) {
this(method, domain, uri, null);
}
/**
* Create a new API request.
*
* @param method HTTP Method
* @param domain Twilio domain
* @param uri uri of request
* @param region region to make request
*/
public OAuthRequest(
final HttpMethod method,
final String domain,
final String uri,
final String region
) {
super(method, domain, uri, region);
}
}