Closed wwarby closed 2 years ago
I've tracked down the cause of this issue I think and hacked in a fix that works - at least for my use case.
Replacing this line with .param(args)
makes the problem go away. Is this a bug I've stumbled over with an easy fix?
I can confirm @wwarby's bug and super helpful 1-line fix. I was getting a 414
error and unable to reorder photos until I made this change.
Thank you @wwarby!
Thanks for the bug fix! This should be fixed in v5.0.0.
I'm attempting to update a photoset with several hundred photos in it, and hitting a 413 response (request too large). Here's what I'm doing:
I can see from the error response that the bit long set of photo IDs is being passed as a query string param, despite the method being
POST
:Is there any way to coerce the library to send the parameters of this method as a post body rather than as a query string? I couldn't see anything obvious in the documentation, but it looks as though the Flickr API itself should support this in principle.