Hey, I’m working on baby’s first development, so I’m bound to have pretty stupid questions: thanks in advance for the help! I hope to learn and ask smarter questions next time =)
I’m making a session auth step, and having a spot of trouble with the developer platform injecting X-CLIENT-ID-KEY and X-CLIENT-SECRET-KEY into headers, and I can’t seem to get rid of them.
Authentication POST request
The API docs want
- Headers:
- Content-Type: application/json
- Api-version: alpha
- Body:
- ClientID
- ClientSecret
The platform keeps autopopulating the X-CLIENT-ID-KEY and X-CLIENT-SECRET-KEY into my headers, and I can’t delete them. Even if I hit the ‘X’ to delete them, they come back when I click back into the tab (even if I hit ‘save’).
![](https://uploads-us-west-2.insided.com/zapier-ca/attachment/805b5dfc-54fc-4abe-b512-b6bedf5aee36.png)
Test GET Request
The API docs want
- Headers:
- Content-Type: application/json
- Api-version: alpha
- Authorization: bearer token
- Body:
- optional (not the issue here).
Again, the platform keeps injecting X-CLIENT-ID-KEY and X-CLIENT-SECRET-KEY.
![](https://uploads-us-west-2.insided.com/zapier-ca/attachment/50a440b3-f9f9-4254-a6f3-19c1a54039db.png)
When I test the connection, I get these results:
![](https://uploads-us-west-2.insided.com/zapier-ca/attachment/c6b9ee4b-baa8-493e-8102-7a56560c224d.png)
I don’t even know where to start. Any ideas? =)