- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以用这段代码得到图片:
https://graph.facebook.com/userid/picture
但这行不通:
https://graph.facebook.com/userid/first_name
如何获取用户名?
最佳答案
你不能像获取图片那样获取 first_name
。
https://graph.facebook.com/userid/?fields=first_name
会得到
{
"first_name": "Jashwant",
"id": "1137725463"
}
然后你可以通过任何json解析器得到first_name
。
这是GIVE_ME_THE_CODE版本,
<html>
<head>
<style>
</style>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(document).ready(function(){
$.getJSON('http://graph.facebook.com/jashwantsingh?fields=first_name',function(data){
$('<p>' + data.first_name + '<p>').appendTo('body');
})
})
</script>
</head>
<body>
</body>
</html>
关于facebook - 如何通过图形 API 获取 first_name?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10663209/
我想查找一个字符串是否包含“Are”、“Ate”、“Aste”或“Anche”之类的内容,例如 string.contains("A%e")。java的表达方式:从员工中选择名字,其中名字类似于“A%
错误号:1064 您的 SQL 语法有误;查看与您的 MySQL 服务器版本对应的手册,了解在 'WHEN t2.first_name <> '' then CONCAT(t2.first_name,
我有这个问题 Cannot read property 'first_name' of undefined 这是我的 HTML 文件 checkout.html Fir
如何隔离 first_name 键以在以下对象中输出其值? { "first_name": "D", "last_name": "N", "phone_number": 123
public function process(Zend_Controller_Request_Abstract $request) { $this->first_name = $this-
任何人都可以为我阐明这一点吗? # 的未定义方法“first_name” 这是 show.html First name: Second name: About:
所以,我正在使用设计来对 Rails 应用程序进行用户身份验证。我想为设计用户添加名字和姓氏。因此,我为用户数据库创建了新列。不幸的是,当我尝试我的表单时,我得到了“未定义的方法‘first_name
我想点击收件箱中主题为“测试”的未读邮件(新邮件) 此功能目前点击主题为“测试”的旧电子邮件。我想对主题为“测试”的未读电子邮件执行此功能 public static WebElement execu
我可以用这段代码得到图片: https://graph.facebook.com/userid/picture 但这行不通: https://graph.facebook.com/userid/fir
当我将表单值插入数据库时,它得到列“first_name”不能为空。但在数据库中,first_name 不为空。但它显示空错误。 公共(public)函数save() { $sql = "
我的 PostgreSQL 数据库中有两个表。 一个表,称之为“存档”,有一列“名称”,它是两个单词的名字和姓氏,例如'John Smith' 和一个空列,其中包含 'user_id'。 第二个表称为
我正在通过教程学习 MEAN 堆栈。当我在本地主机上尝试时,出现错误。 TypeError: Cannot read property 'first_name' of undefined at rou
假设我有如下所示的数组。 Array ( [0] => agent_name [1] => first_name [2] => my_last_name [3] =>
Rails 3.1 设计 1.4.2 我在设计的用户表中添加了 first_name 和 last_name 列。然后我习惯于控制台为我的第一个用户添加 first_name 和 last_name。
这个错误意味着什么? AttributeError:“CustomUser”对象没有属性“first_name” custom_user/models.py from time import time
我在我的应用中集成了 Firebase 分析。也设置了一些用户属性。我已经在控制台中注册了这些属性,它工作正常,但现在的属性除外。那个美丽的属性(property)的名字是 first_name。 :
这个问题已经有答案了: How do I return the response from an asynchronous call? (42 个回答) 已关闭 6 年前。 我不断收到TypeErro
在 django 中工作。 为配置文件模型创建 unicode 输出,其中用户姓氏是可选的。 Desired: John D. if last name John if not last na
我是ibatis新手, 我用ibatis写了一个小程序。 但是我收到以下错误。我用尽各种办法。我不知道如何解决。 谁能告诉我为什么会发生这种情况以及避免此错误的方法是什么? Exception in
使用 Django 1.11 和 django-pyodbc-azure 最新版本(如果相关)。 我是 Django 新手,一直遵循 1.11 教程,在此之前没有任何问题,但我感到非常困惑。 这是我的
我是一名优秀的程序员,十分优秀!