List Web Fonts
var GoogleAPIsDeveloperFonts = require('machinepack-googleapisdeveloperfonts');
// List Web Fonts
GoogleAPIsDeveloperFonts.list({
key: 'YOUR_API_KEY',
sort: 'alpha',
fields: 'items,kind',
}).exec({
// An unexpected error occurred.
error: function (err) {
},
// Access Not Configured
accessNotConfigured: function () {
},
// OK.
success: function () {
},
});
Your API key
'YOUR_API_KEY'
Enables sorting of the list
'alpha'
Selector specifying which fields to include in a partial response.
'items,kind'
An unexpected error occurred.
Access Not Configured
OK.