Reputation: 11
I have a problem with "Resumable item upload" (http://onedrive.github.io/items/upload_large_files.htm). If the access token expires during the upload session I receive a 401 Unhautorized error even if I use the refresh token to obtnain another access token.
Upvotes: 0
Views: 161
Reputation: 1112
You are supposed to handle this in your application - refresh token if this happens and then continue uploading. Current chunk should be properly saved so you can continue with the next one.
Upvotes: 0