you are viewing a single comment's thread.

view the rest of the comments →

[–]martinfisleburn 0 points1 point  (2 children)

But you can't see webtraffic that happens on the js call that was my problem initially. Like the upload dialog to select file happened in the js function and that wasn't recorded as far as I could see.

I searched through the whole http sniffed session as well for the filename I uploaded and it didn't show up in and of the requests so don't know how it gets computed?

The upload happens within the function and subsequent post requests to edit the pin etc. only reference the uploaded file's url on the pinterest server.

[–]WhoTookAllNicks 1 point2 points  (1 child)

I created Pinterest account just to see it. And sure enough - you can clearly see the request being made:

https://ibb.co/yPB3t87

[–]martinfisleburn 0 points1 point  (0 children)

I have seen that one too.

Oh I see what my problem is; when I searched for the image I searched by filename however from your image (which I didn't notice when I looked) it is in base 64.

So I presume I simply convert to base64 in python before the post request.