Cordova plugin for Pinterest
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic Pinterest插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic Pinterest插件支持的平台(Supported Platforms)
- Android
- iOS
Ionic Pinterest插件的用法(Usage)
import { 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));