Skip to content Skip to sidebar Skip to footer

Node.js Obtain Access Token

I have been given the following documentation (https://autovit.zendesk.com/hc/ro/articles/214077685-Obtinere-token-acces) and I want to call this api to get the access token for su

Solution 1:

The -u option is for Basic authentication. You can include it in the URL or in the Authorization header as "Basic {auth_hash}".

This article shows each in an example - https://www.haykranen.nl/2011/06/21/basic-http-authentication-in-node-js-using-the-request-module/

Post a Comment for "Node.js Obtain Access Token"