Cordova plugin for Pinterest
https://github.com/zyramedia/cordova-plugin-pinterest
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-pinterest $ npm install @ionic-native/pinterest $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-pinterest $ npm install @ionic-native/pinterest
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Pinterest, PinterestUser, PinterestPin, PinterestBoard } from '@ionic-native/pinterest/ngx';
constructor(private pinterest: Pinterest) { }
...
const scopes = [ this.pinterest.SCOPES.READ_PUBLIC, this.pinterest.SCOPES.WRITE_PUBLIC, this.pinterest.SCOPES.READ_RELATIONSHIPS, this.pinterest.SCOPES.WRITE_RELATIONSHIPS];
this.pinterest.login(scopes) .then(res => console.log('Logged in!', res)) .catch(err => console.error('Error loggin in', err));
this.pinterest.getMyPins() .then((pins: PinterestPin[]) => console.log(pins)) .catch(err => console.error(err));
this.pinterest.getMe() .then((user: PinterestUser) => console.log(user));
this.pinterest.getMyBoards() .then((boards: PinterestBoard[]) => console.log(boards));