Hi,
I'm getting an "HTTPError: 403 Client Error: Forbidden for url: " error when I try to run the following with the SDK (I've hidden the token and the domain, obviously). This worked previously. I can sign-in as normal -- so the server is working. When I click on the that is returned in the error message that works, too (because I'm authenticated).
The returned url is my-domain/api/v4/metaproperties in this example.
I had the admin look at the token, and permissions still seem OK. Ideas?
Ted
from bynder_sdk import BynderClient
#PERMTOKEN='permanent_token'
bynder_client = BynderClient(
domain='my-domain',
permanent_token=PERMTOKEN
)
asset_bank_client = bynder_client.asset_bank_client
mp=asset_bank_client.meta_properties()
Hi,
I'm getting an "HTTPError: 403 Client Error: Forbidden for url: " error when I try to run the following with the SDK (I've hidden the token and the domain, obviously). This worked previously. I can sign-in as normal -- so the server is working. When I click on the that is returned in the error message that works, too (because I'm authenticated).
The returned url is my-domain/api/v4/metaproperties in this example.
I had the admin look at the token, and permissions still seem OK. Ideas?
Ted