Hi
I have created a index and insert data into the database.
Now i want to generaet API key for my application to use but I don’t want to give it all read write access.
I only want read access but when I genreates a key with read only access and try to call this. Search with text - Pinecone Docs
It does not work and error with HTTP response headers: HTTPHeaderDict({'x-pinecone-auth-rejected-reason': 'Access control denied.
When i give the key read write access it work.
Why is that?
I use Python SDK to do this.
My expectaion is that if I have key with read only it should work with the search operation as it does not modify the data in any way. It should error when i try to modify the data.
Thank you