0

I have this code:

table_client = TableClient(
        endpoint=AZURE_TABLE_URL, 
        credential=AzureSasCredential(AZURE_TABLE_SAS_TOKEN),
        table_name=AZURE_TABLE_NAME
    )
entities = table_client.get_entity(partition_key=my_partition_key, row_key=my_row_key)

which returns

The requested operation is not implemented on the specified resource

I am sure this sas token is granted with 4 permissions and I can use it with create entity. I saw several similar questions on #c or JS language, and I try to follow but none of them works for me.

0

1 Answer 1

0

I got answer here. Should remove table name from the URL part. Although it works for create entity with that URL.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.