Does anyone know how to use Skydrive REST API in Android?
(documented here http://msdn.microsoft.com/de-de/library/live/hh243648.aspx)
All Data that are needed for access are already stored!
private String AccessToken;
private String AuthenticationToken;
private String RefreshToken;
private String ExpiresIn;
private String Scope;
Is it right to use
HttpClient client = new DefaultHttpClient();
Does anyone have a full example?
Any ideas or suggestion would be helpful. Thank you.