Any idea why threads API does not return something if you are using a secret as the Auth. Did something change for Threads?
I had the same issue, was sending a get instead of a post request.
Maybe, you missed the data field, for example, -d ââ.
I had the same issue when I tried this API with curl. After I added the -d ââ (empty data), the result didnât have any errors.
My curl call contains the -d and its exactly as the example on the documentation. I am getting the same error and it doesnât make sense to me on what itâs missing.
I had to pay attention to your response. The solution is by using âCURL -X POSTâ instead of using a GET type request as per the documentation example provided. Thanks buddy. Now its working!