mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
13 lines
No EOL
329 B
JavaScript
13 lines
No EOL
329 B
JavaScript
var amazonPayments = require('amazon-payments');
|
|
|
|
var payment = amazonPayments.connect({
|
|
environment: amazonPayments.Environment.Production,
|
|
sellerId: 'Amazon Seller ID',
|
|
mwsAccessKey: 'MWS Access Key',
|
|
mwsSecretKey: 'MWS Secret Key',
|
|
clientId: 'Client ID'
|
|
});
|
|
|
|
exports.verifyAccessToken = function(req, res, next){
|
|
|
|
}; |