SpotifyHttpManagerpublic interface IHttpManager
| Modifier and Type | Method | Description |
|---|---|---|
String |
delete(URI uri,
org.apache.http.Header[] headers,
org.apache.http.HttpEntity body) |
Perform an HTTP DELETE request to the specified URL.
|
String |
get(URI uri,
org.apache.http.Header[] headers) |
Perform an HTTP GET request to the specified URL.
|
String |
post(URI uri,
org.apache.http.Header[] headers,
org.apache.http.HttpEntity body) |
Perform an HTTP POST request to the specified URL.
|
String |
put(URI uri,
org.apache.http.Header[] headers,
org.apache.http.HttpEntity body) |
Perform an HTTP PUT request to the specified URL.
|
String get(URI uri, org.apache.http.Header[] headers) throws IOException, SpotifyWebApiException
uri - The GET request's URI.headers - The GET request's Headers.IOException - In case of networking issues.SpotifyWebApiException - The Web API returned an error further specified in this exception's root cause.String post(URI uri, org.apache.http.Header[] headers, org.apache.http.HttpEntity body) throws IOException, SpotifyWebApiException
uri - The POST request's URI.headers - The POST request's Headers.body - The PUT request's body as a HttpEntity.IOException - In case of networking issues.SpotifyWebApiException - The Web API returned an error further specified in this exception's root cause.String put(URI uri, org.apache.http.Header[] headers, org.apache.http.HttpEntity body) throws IOException, SpotifyWebApiException
uri - The PUT request's URI.headers - The PUT request's Headers.body - The PUT request's body as a HttpEntity.IOException - In case of networking issues.SpotifyWebApiException - The Web API returned an error further specified in this exception's root cause.String delete(URI uri, org.apache.http.Header[] headers, org.apache.http.HttpEntity body) throws IOException, SpotifyWebApiException
uri - The DELETE request's URI.headers - The DELETE request's Headers.body - The DELETE request's body as a HttpEntity.IOException - In case of networking issues.SpotifyWebApiException - The Web API returned an error further specified in this exception's root cause.Copyright © 2019. All rights reserved.