facebook-java-api:fql_query 返回 null
我正在尝试使用 fql_query 获取登录的名字。
我尝试了以下代码:
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import javax.servlet.http.*;
import javax.servlet.*;
import org.w3c.dom.Document;
import com.google.code.facebookapi.FacebookException;
import com.google.code.facebookapi.FacebookWebappHelper;
import com.google.code.facebookapi.FacebookXmlRestClient;
import com.google.code.facebookapi.IFacebookRestClient;
import org.json.JSONException;
public class Canvas extends HttpServlet {
private static final String FACEBOOK_USER_CLIENT = "facebook.user.client";
private String api_key=<API_KEY>;
private String secret=<SECRET>;
@Override
public void doGet (HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException
{
HttpServletRequest request = (HttpServletRequest)req;
HttpServletResponse response = (HttpServletResponse)res;
HttpSession session = request.getSession(true);
IFacebookRestClient<Document> userClient = getUserClient(session);
if(userClient == null) {
// logger.debug("User session doesn't have a Facebook API client setup yet. Creating one and storing it in the user's session.");
userClient = new FacebookXmlRestClient(api_key, secret);
session.setAttribute(FACEBOOK_USER_CLIENT, userClient);
}
FacebookWebappHelper<Document> facebook = new FacebookWebappHelper<Document>(request, response, api_key, secret, userClient);
String nextPage = request.getRequestURI();
nextPage = nextPage.substring(nextPage.indexOf("/", 1) + 1); //cut out the first /, the context path and the 2nd /
// logger.trace(nextPage);
boolean redirectOccurred = facebook.requireLogin(nextPage);
if(redirectOccurred) {
return;
}
redirectOccurred = facebook.requireFrame(nextPage);
if(redirectOccurred) {
return;
}
long facebookUserID;
try {
facebookUserID = userClient.users_getLoggedInUser();
} catch(FacebookException ex) {
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Error while fetching user's facebook ID");
/* logger.error("Error while getting cached (supplied by request params) value " +
"of the user's facebook ID or while fetching it from the Facebook service " +
"if the cached value was not present for some reason. Cached value = {}", userClient.getCacheUserId());*/
return;
}
PrintWriter out = res.getWriter();
String query = "Select name from user where uid=" + facebookUserID;
Document fqlDocument=null;
try {
fqlDocument = userClient.fql_query(query);
} catch (FacebookException e) {
out.println("error");
}
out.println("Hello, Brave new World: " + facebookUserID + " " + fqlDocument);
out.close();
}
public static FacebookXmlRestClient getUserClient(HttpSession session) {
return (FacebookXmlRestClient)session.getAttribute(FACEBOOK_USER_CLIENT);
}
}
结果输出是:
Hello, Brave new World: <MY_UID>[#document: null]
我确信我收到的 uid 是正确的。 使用 facebook-java-api 3.0.2(最新版本)
- 为什么我从查询中得到一个空文档?
- 如果出现问题,为什么查询没有抛出任何相关异常?
- 这是我在网上找到的代码,有没有更好的方法来实现我的目标?
感谢一切!
我对这个主题非常陌生,因此对于任何与该主题不相关的问题或信息,我深表歉意。
I'm trying to fetch logged-in first name using fql_query.
i tried the following code:
import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import javax.servlet.http.*;
import javax.servlet.*;
import org.w3c.dom.Document;
import com.google.code.facebookapi.FacebookException;
import com.google.code.facebookapi.FacebookWebappHelper;
import com.google.code.facebookapi.FacebookXmlRestClient;
import com.google.code.facebookapi.IFacebookRestClient;
import org.json.JSONException;
public class Canvas extends HttpServlet {
private static final String FACEBOOK_USER_CLIENT = "facebook.user.client";
private String api_key=<API_KEY>;
private String secret=<SECRET>;
@Override
public void doGet (HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException
{
HttpServletRequest request = (HttpServletRequest)req;
HttpServletResponse response = (HttpServletResponse)res;
HttpSession session = request.getSession(true);
IFacebookRestClient<Document> userClient = getUserClient(session);
if(userClient == null) {
// logger.debug("User session doesn't have a Facebook API client setup yet. Creating one and storing it in the user's session.");
userClient = new FacebookXmlRestClient(api_key, secret);
session.setAttribute(FACEBOOK_USER_CLIENT, userClient);
}
FacebookWebappHelper<Document> facebook = new FacebookWebappHelper<Document>(request, response, api_key, secret, userClient);
String nextPage = request.getRequestURI();
nextPage = nextPage.substring(nextPage.indexOf("/", 1) + 1); //cut out the first /, the context path and the 2nd /
// logger.trace(nextPage);
boolean redirectOccurred = facebook.requireLogin(nextPage);
if(redirectOccurred) {
return;
}
redirectOccurred = facebook.requireFrame(nextPage);
if(redirectOccurred) {
return;
}
long facebookUserID;
try {
facebookUserID = userClient.users_getLoggedInUser();
} catch(FacebookException ex) {
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, "Error while fetching user's facebook ID");
/* logger.error("Error while getting cached (supplied by request params) value " +
"of the user's facebook ID or while fetching it from the Facebook service " +
"if the cached value was not present for some reason. Cached value = {}", userClient.getCacheUserId());*/
return;
}
PrintWriter out = res.getWriter();
String query = "Select name from user where uid=" + facebookUserID;
Document fqlDocument=null;
try {
fqlDocument = userClient.fql_query(query);
} catch (FacebookException e) {
out.println("error");
}
out.println("Hello, Brave new World: " + facebookUserID + " " + fqlDocument);
out.close();
}
public static FacebookXmlRestClient getUserClient(HttpSession session) {
return (FacebookXmlRestClient)session.getAttribute(FACEBOOK_USER_CLIENT);
}
}
the resulted output is:
Hello, Brave new World: <MY_UID>[#document: null]
i reassured that the uid that i received is the correct one.
using facebook-java-api 3.0.2 (latest version)
- why did i get an empty document from the query ?
- why did the query not throw any relevant exception if there was a problem?
- this is a code that i found on the net, is there any better method to implement my goals ?
thanks for everything!
i'm really new in this subject so i apologize for any un-relevant questions or information on the subject.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 TinyFBClient 而不是 facebook-java-api 解决了该问题。
tinyFbClient 允许发送实际的 facebook api 命令,这使我无需使用 fql 查询即可获取应用程序的所有相关信息。
facebook API: http://wiki.developers.facebook.com/index.php/API
tinyFBClient:http://www.socialjava.com/
代码示例:
I resolved the issue by using TinyFBClient instead of facebook-java-api.
tinyFbClient allows to send the actual facebook api commands which allows me to get a all the relevant information for my application without using fql queries at all.
facebook api: http://wiki.developers.facebook.com/index.php/API
tinyFBClient: http://www.socialjava.com/
code sample: