All my sample codes using the Appcelerator platform
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
385 B

var Arrow = require('arrow');
/**
* Fetches metadata describing your connector's proper configuration.
* @param next
*/
exports.fetchMetadata = function fetchMetadata(next) {
next(null, {
fields: [
Arrow.Metadata.Text({
name: 'accessToken',
description: 'A Facebook access_token, that you can get with the "get-oauth-token.sh".',
required: true
})
]
});
};