Just having a minor issue and hoping another set of eyes can catch the error. In postman https://developer.api.autodesk.com/project/v1/hubs/:hub_id/projects return all the projects by by vb.net application keeps returning nothing. Im not having any issues with any other calls just this one..
Dim Oauthtask = AuthOrize.InitializeOAuthPost()
Dim Accesstoken As String = "Bearer " + Oauthtask
Dim Projectslist As DataTable
Try
Dim options = New RestClientOptions("https://developer.api.autodesk.com") With {.MaxTimeout = -1}
Dim client = New RestClient(options)
Dim request = New RestRequest("/project/v1/hubs/" + Account.Default.hubID + "/projects", Method.[Get])
request.AddHeader("Content-Type", "application/json")
request.AddHeader("Authorization", Accesstoken)
Dim response As RestResponse = client.Execute(request)
MsgBox(response.Content) - returns nothing