Hi,I can get my private services from http://resources.arcgis.com/en/help/rest/apiref/catalog.html
Here is my test code:
IdentityManager.Current.GenerateCredentialAsync(
"http://www.arcgis.com/sharing/rest/",
"", // here should be your username
"", // here should be your password
(credential, ex) =>
{
if (ex != null)
{
MessageBox.Show(ex.ToString());
return;
}
var webClient = new ArcGISWebClient();
var parameters = new Dictionary<string, string>
{
{ "f", "json" },
{ "token", credential.Token}
};
webClient.DownloadStringCompleted += (sender, args) =>
{
MessageBox.Show(args.Result.ToString());
};
webClient.DownloadStringAsync(new Uri("http://services.arcgis.com/AddYourIdentity/ArcGIS/rest/services"), parameters);
});
If you share your request and code, I might be track it down.