864 questions
Best practices
0
votes
6
replies
189
views
the best choice of managing data for my pinterest-like project
I'm building a Pinterest-like web application where users can create boards, save images (pins), and organize them with tags. Each pin has metadata such as title, description, image URL, author, and ...
1
vote
0
answers
248
views
I have a 'succeeded' media_id. But the Pinterest API tells me "The media_id you are trying to use has not been uploaded"
I'm trying to upload a video to pinterest.
The following code returns an object as expected:
const checkUploadStatusRes = await fetch(
`https://api.pinterest.com/v5/media/${...
0
votes
0
answers
314
views
My media is not being uploaded to Pinterest using API
I have created a workflow to create pins on Pinterest using API but the media status is always registered and not failed or succeeded.
Is there something else i need to do after making request to ...
2
votes
0
answers
230
views
How can I send the product IDs for an item array back to Pinterest?
I'm attempting to create a Checkout event to send to Pinterest Ads. I'm using custom javascript to transform my data, in particular I need to sum the item totals and total cart value since these are ...
0
votes
2
answers
1k
views
CSS Grid with uneven rows (Pinterest style) [duplicate]
I'm trying to create a grid of links (img + text) that will be 3 columns and multiple rows. The problem is that my images are not the same height, so I'm getting a result like this:
I'm trying to find ...
0
votes
2
answers
1k
views
Pinterest API V5 Create Pins With Local Images
I'm trying to make a pinner app with official Pinterest API. I completed most of the features,
but I'm struggling with creating pins.
I can't create a pin with my local files like:
MEDIA_SOURCE =
{ ...
-1
votes
1
answer
244
views
How do i get rid of the padding around the widget inside the border?
The first image is what i have and the second is the result i want to accomplish.
so far ive realised that disabling the two ticks (in the picture above) does the trick but how do write the css code?
...
0
votes
1
answer
582
views
Navigator.share API does not share text with image on Pinterest
I am using navigator.share to pin image from reactjs app to Pinterest. But it only saves image and no description is there. On desktop i am able to save image and description using URI schema as
<a ...
0
votes
1
answer
230
views
Hide the scrollbars and the box shadow in pinterest widget
I tried
#pinterest-container [class$=_img] {
display: block !important;
box-shadow: none !important;
border-radius: 0 !important;
}
#pinterest-container [class$=_col] {
padding: 0;
}
from ...
1
vote
0
answers
334
views
Get Pinterest API authorization code in Python
I am able to get my Ads API from Pinterest using the manual method of generating a authentication code using -
https://www.pinterest.com/oauth/?client_id=ABC&redirect_uri=xyz.com&scope=ads:...
-1
votes
1
answer
721
views
How do I do a pin search with pinterest-node-api?
import Pinterest from "pinterest-node-api";
const client = new Pinterest('pina_AMAS3KIWABUBCAA');
try {
// Search for pins with the keyword
const res = await client.request('/pins'...
0
votes
1
answer
1k
views
pinterest access token giving error authentication failed
I using below command to get access token
curl -X POST https://api.pinterest.com/v5/oauth/token
--header 'Authorization: Basic {base64 encoded string made of client_id:client_secret}'
--header '...
0
votes
1
answer
258
views
Pinterest 'grant_type' is a required property
Im trying to get access_token from pinterest api but getting this error.
'grant_type' is a required property
I'm using this login url:
https://www.pinterest.com/oauth/?client_id=APPID&...
0
votes
0
answers
310
views
Pinterest API for Conversions
I'm trying to request access to this API by following their instructions:
https://developers.pinterest.com/blog/2022/04/12/introducing-pinterest-api-v5/
Note, that the location in the help does not ...
1
vote
1
answer
551
views
Add Pinterest tracking code product line items product name and id to WooCommerce Checkout
I am hooking into the checkout thank you page. I'm stuck connecting the line_items to the Pinterest datalayer. I have the order total and order quantity working, but Pinterest still wants the Product ...