Looking to tap into the VersionOne api in order to create a custom HTML page displaying Story Names. I plan to use HTML, javascript, JSON, and OAUTH2 for this project (without a callback URL). Specifically, I need to access the query.v1 endpoint, but I find the setup instructions for this to be less clear than rest-1.v1.
I've generated my client secret ("v1_client_secrets.json"), but I'm unsure about what "using the scope query-api-1.0" means or how to implement it. The api documentation I'm referring to can be found here:
I have no issue with the json data GET pattern below.
{
"from": "Story",
"select": [
"Name"
]
}
Although there are examples of JSON patterns available, I'm struggling to code it from start to finish. Is there a template script that includes all necessary HTML and javascript based on my requirements? I assume jquery, angular, and ajax would be part of the process for retrieving/parsing/reading the data.
Just a heads up - I'm new to coding, especially when it comes to consuming APIs, so I hope all of this makes sense.