How to get API endpoint info on an index page - api

i was using something that displays all the API endpoints in an index page. it showed me all the endpoints and what they accept and allowed me to try the API out.
I cant for the life of me remember what it was.
Can anyone help please
if someone says what it is i will defo remember if it that i was using and cant find it on google
Thanks in advance

Related

Google OAuth2 Demo fails with 403 ["message": "Cannot determine user location for geographically restricted operation."]

While I was checking out some of the Google public APIs for OAuth2, encountered above error message.
I basically didn't change a lot, tried not to add anything invalid as well
but when it goes to Step 3. Configure request to API; it's failing.
When I clicked on the link from the first screenshot, it takes me to the website where I get the second screenshot.
Has anyone worked on this resolved, or anyone who's knowledgeable in this area can help with this?
Source: https://developers.google.com/oauthplayground/
Thank you in advance!!

Getting access to the Google Pay API for Passes

I am currently trying to get access to the Google Pay API for passes. I am following the official guide provided by Google: https://developers.google.com/pay/passes/guides/basic-setup/get-access-to-rest-api
Unfortunately I can't even follow the first step, as the sign up form for Google Merchant seems to be offline. The URL where I expect the form just forwards me to an FAQ page.
Has anyone had similar issues lately.
Any kind of help or information is appreciated! Thanks.
Moving discussion from comment to answer to include image.
Hard to say if we're seeing the same thing. This is what I see when visiting https://support.google.com/pay/merchants/gethelp?visit_id=1-636549173956235486-3194546471&rd=4
Is this what you see?
You need to go straight to step 2. Access the API Console.

direct message sync issue with twitter API

I am using the twitter api to get all direct messages
while testing I tried to delete a message from the twitter website and then tried to reload my app's direct message page (get via api) - the dm I deleted was still showing in my app but it wasn't on the account I was using on the website.
I'm not sure whats going on here, any help is appreciated
You usually should give a second after an update/delete operation on Twitter. If you do, I would say that something is going wrong with your code.

How to fix Feature not enabled problems

I currently have an issue that whenever I connect my MapBox map to the Directions API, an error is returned which says '{"message":"Feature not enabled"}'.
I have looked around and have not found anywhere where I can enable this feature, and would like to know if there is a way that you can do it.
Thanks in Advance,
Chris
https://www.mapbox.com/developers/api/directions/
First line:
This API is a preview and may be changed or removed at any time. Contact us to get testing access to this API.

Connecting to CJ API

Im trying to make a REST api work with VB.NET (http://help.cj.com/en/web_services/web_services.htm#Commission_Detail_Service.htm)
This is CJ commission's API.
The problem I have is that Im trying to add the service reference https://commission-detail.api.cj.com/v3/commissions but its not working, and when I go straight to that address on the web browser, its asking me for the developer key, which I have, but I dont know how to enter it.
Does anyone have a sample code on how to connect to that API?
Thanks!
I guess you don't need it by this time, but still, for those who'll have the similar question and get to this page: you should pass your developer key as the authorization header of your request. Depending on how you make requests, it could look something like this in VB.NET:
HttpWebRequest.Headers.Add("authorization", "your_dev_key")