1

I am trying to make a GET call to the shopify api with request-promise in node. I keep getting this error :-

'401 - {"errors":"[API] Invalid API key or access ' + 'token (unrecognized login or wrong password)"}'

How should format the options to take an API key and password?

const request = require("request-promise");
const Parse = require('parse/node');


const options = {
  method:'GET',
  json: true,
  uri: 'https://the-bib-wine-company.myshopify.com/admin/api/2019-07/orders.json',
  headers: {
   'Authorization': <api key and password encode64>
  }
}


request(options)
  .then(function(response) {

var Test = Parse.Object.extend("Test");
    var test = new Test();

test.set('orders', 'success');
    test.save();

  })
  .catch(function(err) {
    console.log(err)
  })
phuzi
  • 12,078
  • 3
  • 26
  • 50
twl2009
  • 79
  • 1
  • 11

1 Answers1

2

Answered my own question, if it helps anyone.

auth: { 'user': 'API key', 'pass': 'mypassword' }

twl2009
  • 79
  • 1
  • 11