0

例如,我想从 facebook url 获取名称,url 是http://www.facebook.com/GetThisNamehttps://www.facebook.com/GetThisName

我只想保存这个词“GetThisName”,我该如何用c#编码呢?谢谢

4

1 回答 1

0

如果您只想要 URL 中的“GetThisName”部分:

从您的字符串中创建一个 System.Uri 对象,它将为路径的不同部分提供几个属性:

string path = "http://www.facebook.com/GetThisName";
Uri uri = new Uri(path);
Console.WriteLine(uri.AbsolutePath); 

如果您想将 facebook 集成到您的网站并检索用户名

从这里使用 JS SDK http://developers.facebook.com/docs/reference/javascript/

并像这样检索用户名

FB.api('/me', function(me) {
document.getElementById('auth-displayname').innerHTML = me.name;
document.getElementById('Email').innerHTML = me.email;
document.getElementById('profileImg').src = uid;
}
于 2012-11-24T10:00:10.290 回答