Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 546 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 546 Bytes

Meteor accounts-pinterest login

Instalation

meteor add treecom:accounts-pinterest

Configuration

Register your application on pinterest and grab App ID and APP Secret for next server side config:

  Meteor.startup(function() {
    ServiceConfiguration.configurations.upsert({
      service: 'pinterest'
    }, {
      service: 'pinterest',
      scope: 'read_public,write_public', // optional
      clientId: '__APP_ID__',
      secret: '__APP_SECTRET__'
    });
  });