Search code examples
c#.nettfsazure-devopstfs-sdk

Authenticating to hosted TFS: TF30063: You are not authorized to access .visualstudio.com


I'm trying to connect to TFS on visualstudio.com through c# and am getting auth errors

TF30063: You are not authorized to access [subdomain].visualstudio.com.

Here is how I'm trying to enter the username and the password, which are 100% for sure correct, I can login through the website by copying and pasting the u/n & pass, and the account is part of the collection and projects.

var tfsServer = TfsConfigurationServerFactory.GetConfigurationServer(new Uri(server));
tfsServer.Credentials = new NetworkCredential(username, password);
tfsServer.Authenticate();

Solution

  • Based on visualstudio.com, it looks like you're connecting to hosted TFS.

    You can enable alternate credentials and then use those credentials to auth via basic auth.

    If you go to your profile in the web page for TFS (upper right hand corner in hosted), there's a credentials tab. enter a username and password for alternate credentials and you can now send via basic auth header.

    Programmatically in C# it's:

    NetworkCredential netCred = new NetworkCredential(
                "altUserName",
                "altPassword");
    BasicAuthCredential basicCred = new BasicAuthCredential(netCred);
    

    Buck blogged about it here:

    http://blogs.msdn.com/b/buckh/archive/2013/01/07/how-to-connect-to-tf-service-without-a-prompt-for-liveid-credentials.aspx