Authenticating to hosted TFS: TF30063: You are not

2020-07-22 09:47发布

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();

2条回答
Root(大扎)
2楼-- · 2020-07-22 10:24

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

查看更多
We Are One
3楼-- · 2020-07-22 10:35

If you are using Windows Service to connect TFS, then Log on it with administrator credential or a credential which have access to the TFS.

right click on Windows Service -> Properties -> Navigate Log on Tab -> Select This Account and give username and password..

It is worked for me hope it helps

查看更多
登录 后发表回答