我想从facebook网址获取该名称 例如, 网址为http://www.facebook.com/GetThisName或https://www.facebook.com/GetThisName
我只想保存这个单词“GetThisName”, 我该如何处理c#编码? 感谢
答案 0 :(得分:0)
如果您只想从网址获取“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;
}