shopify-node
Advanced tools
Comparing version 0.2.2 to 0.2.3
function ShopifyConnect(params) { | ||
var utils = require('./utils'), | ||
querystring = require('querystring'); | ||
querystring = require('querystring'), | ||
https = require('https'), | ||
@@ -118,3 +118,3 @@ $scope = this; | ||
'Content-Type': 'application/json', | ||
'User-Agent': 'node-shopify (www.typefoo.com)', | ||
'User-Agent': 'shopify-node (www.typefoo.com)' | ||
} | ||
@@ -121,0 +121,0 @@ }; |
{ | ||
"name": "shopify-node", | ||
"description": "A NodeJS connector for Shopify OAuth2", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"author": { | ||
@@ -17,3 +17,3 @@ "name": "uh-sem-blee, Co. | typefoo", | ||
"type": "git", | ||
"url": "https://github.com/uh-sem-blee/shopify-node" | ||
"url": "https://github.com/typefoo/shopify-node" | ||
}, | ||
@@ -29,4 +29,5 @@ "devDependencies": { | ||
"bugs": { | ||
"url": "https://github.com/uh-sem-blee/shopify-node/issues" | ||
} | ||
"url": "https://github.com/typefoo/shopify-node/issues" | ||
}, | ||
"license": "MIT" | ||
} |
@@ -24,3 +24,3 @@ var prompt = require('prompt'); | ||
} | ||
doAuthorization(); | ||
@@ -45,3 +45,3 @@ }); | ||
} | ||
console.log(access_token); | ||
@@ -57,3 +57,3 @@ shopify.setAccessToken(access_token); | ||
// GET | ||
shopify.get('/admin/orders.json', function(err, resp) { | ||
shopify.get('/admin/settings.json', function(err, resp) { | ||
if(err) { | ||
@@ -65,3 +65,3 @@ return console.log(err); | ||
}); | ||
// POST | ||
@@ -116,2 +116,2 @@ var postData = { | ||
}); | ||
} | ||
} |
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
12258
7
278