English 中文(简体)
利用FQL进行简单的Facebook状况回报
原标题:Simple Facebook status return using FQL

我试图在一页的一侧打上一个盒子,显示从Twitter账户和Facebook网页上显示的6个最新员额。 推特正在认真研究我如何想到——Facebook不是。

我现在这样做的方式是,利用FQL作为JSON Wein cURL,在服务器上打上,然后以我是实际箱子中的 t子那样的方式展示这些器。

我的问题是获得象征性援助。 昨天晚上,我开始工作,今天上午回过来,并且注意到,经过修改的我的 ca档案日期没有变化。 我检查了细列的错误档案(如果单列的JSON没有包含我所需要的数据就被丢弃),而且我有一个会议过期错误。 我当时创建了一个小型功能,利用LURL(3个电灯或一个箱子,我知道——urgh)利用这个电网检索新的电线:

但是,现在我有了一个需要一个用户会议的错误,但我想做的是读到最新的员额,这完全是用户依赖者。 我确实希望尽可能避免使用Facebook SDK。

Tl;dr - FQL seems to require users to log in even just to read statuses off of a set page s wall - what s the correct way of getting this data that doesn t require a user session (preferably without using the SDK).

最佳回答

如果你试图从用户账户获得这一地位,那么你将需要有效的用户使用。

如果你重新获得来自“范式”的地位问题,那么你就要求获得有效的信号,即:

https://graph.facebook.com/oauth/access_token?client_id=YOUR_APP_ID&client_secret=YOUR_APP_SECRET&grant_type=client_credentials

然后,你可以利用返回的原住处,从目标F页获得身份。


SlectT id,status_id,message,time from status WHERE uid = XXXX LIMIT 6

You re querying by user id so that will require a valid user access token.

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签