Lightroom API access
I want to build an app to allow uploads from large existing photo archives on custom servers to the Lightroom cloud. I added Lightroom Services to my project, created an OAuth Web App, got an access token for the same (developer) account. Also just in case, added myself to the Beta testers. However, when I make a test request:
curl -i \
-H "X-API-Key: <my-api-key>” \
-H "Authorization: Bearer <my-access-token>" \
https://lr.adobe.io/v2/account
I get a generic openresty 403 Forbidden error page. The weird part: if I send an invalid or a missing token, I get a proper JSON error reply.
What am I doing wrong? Should I somehow apply to Adobe for the API whitelist, or is it a techical issue on my side?
