View my apps

Uploady Api

General notes

Before using api, make sure you have created an app. View my apps.

Authentication

Uploady supports OAuth 2.0 for authenticating all API requests.

Look for suitable client libraries at http://oauth.net/2/

Uploady.com authorization endpoint - https://www.uploady.com/oauth2/auth

Uploady.com token endpoint - https://www.uploady.com/oauth2/token

Time

All time properties are returned in unix time format.

Error handling

Always check response body. It must always return a proper JSON response. After every request, check if response contains `error` parameter. If it exists, when request has failed. Look for a better error explanation in `error_description` parameter.

Access token

Always include access token in the header then possible. `Authorization: Bearer ACCESS_TOKEN`
For GET requests, use query strings instead. `url?access_token=ACCESS_TOKEN`

Example

Api examples can be found at our github repository - http://uploady.github.io/uploady-api-example/

Try it out!

Before you can access api, you need to authenticate and get access token. It can be done by using OAuth2 api.
By pressing "get new access token" below, you will be authenticated to Uploady documentation app.