All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.paths.restapi.oauth.token.Index Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.paths.restapi.oauth.token;

import com.ringcentral.*;
import com.ringcentral.definitions.*;

public class Index {
    public RestClient rc;
    public com.ringcentral.paths.restapi.oauth.Index parent;

    public Index(com.ringcentral.paths.restapi.oauth.Index parent) {
        this.parent = parent;
        this.rc = parent.rc;
    }

    public String path() {
        return parent.path() + "/token";
    }

    public String path(Boolean withParameter) {
        return path();
    }

    /**
     * Returns access (and potentially refresh) tokens for making API requests.
     * 

* Depending on client application type * requests to this endpoint may require authentication with HTTP Basic scheme * using registered client ID and client secret as login and password, correspondingly. *

* HTTP Method: post * Endpoint: /restapi/oauth/token * Rate Limit Group: Auth */ public TokenInfo post(GetTokenRequest getTokenRequest) throws com.ringcentral.RestException, java.io.IOException { okhttp3.ResponseBody rb = this.rc.post(this.path(), getTokenRequest, null, com.ringcentral.ContentType.FORM); return com.ringcentral.Utils.gson.fromJson(rb.string(), TokenInfo.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy