(HttpVerbs verb, String path, Params params, String body)
| 335 | |
| 336 | // A generic method for making requests of any verb. |
| 337 | protected Response request(HttpVerbs verb, String path, Params params, String body) |
| 338 | throws ResponseException { |
| 339 | return unauthenticatedRequest(verb, path, params, body, accessToken.getBearerToken()); |
| 340 | } |
| 341 | |
| 342 | // Builds a request |
| 343 | protected Request buildRequest(HttpVerbs verb, String path, Params params, String body, |