Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Send a GET request to  <OAUTH2_SERVER_URL >/auth?params…

Oath2Server OAuth 2.0 Server is sending a time limited code to the registered <callback_url>.

...

You are now authenticated against GAPI with roles defined in TMSMore Service.


Code Block
languagec#
titleExample C# code:
var client = new RestClient(Config.RESOURCE_SERVER_URL);

var request = new RestRequest(Config.RESOURCE_SERVER_PATH, Method.GET);


request.AddHeader("Authorization", "Bearer " + < access_token >);

request.AddHeader("Content-Type", "application/json");

...