Pinterest Api limits the number of returned contacts
using this query to get user contacts for Pinterest Api (from pinterest api documentation )
http://widgets.pinterest.com/v3/pidgets/users/ {username} / pins /
but by default it returns an array of 50 contacts, is there a way to limit the number of returned contacts to less?
+3
source to share
1 answer
Go here, click Create and get an access token: https://developers.pinterest.com/tools/access_token/
Get statuses using note & limit = int : https://api.pinterest.com/v1/me/pins/?access_token=TOKEN&fields=id,creator,note&limit=2
See docs for more options: https://developers.pinterest.com/docs/api/overview/
+1
source to share