I have an expired token so to get a new one.
I try with this code but i have the error Error 404 Server remote no found.
I use https://api.dropbox.com and https://api.dropboxapi.com with the same result.
Dim _command As String
_command = "https://api.dropboxapi.com/oauth2/token "
_command += " -d grant_type=refresh_token "
_command += "-d refresh_token=" & _refresh_token
_command += "-d client_id=" & _App_key
_command += "-d client_secret=" & _App_secret
Dim Request As HttpWebRequest
Request = HttpWebRequest.Create(_command)
Request.Method = "POST"
Request.KeepAlive = True
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 Or SecurityProtocolType.Tls12 Or SecurityProtocolType.Tls11 Or SecurityProtocolType.Tls
Request.ContentType = "application/json" ' application/x-www-form-urlencoded"
Request.UserAgent = "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36"
ServicePointManager.SecurityProtocol = CType(48, SecurityProtocolType) Or CType(192, SecurityProtocolType) Or CType(768, SecurityProtocolType) Or CType(3072, SecurityProtocolType)
Request.AllowAutoRedirect = True
Try
Using response = CType(Request.GetResponse(), HttpWebResponse)
Using reader = New IO.StreamReader(response.GetResponseStream())
_file = reader.ReadToEnd()
End Using
End Using
Catch ex As WebException
Using response = CType(ex.Response, HttpWebResponse)
Using reader = New IO.StreamReader(response.GetResponseStream())
_errore = reader.ReadToEnd()
End Using
End Using
Catch ex As Exception
Throw
End Try
Thank you.
Luca