我搜索了很多,我也可以在StackOverflow中看到一些与我相同的问题,但没有得到答案。
我需要获取用户(google +和facebook)的消息,无论他在他/她的帐户下发布什么消息,并将其作为xml响应移动应用程序,这将显示用户帖子更好的格式/设计 - 所以我需要使用个人资料ID /用户名从谷歌+ / Facebook获取帖子。
例如:从推特上我可以看到来自
的状态是否有任何图书馆或任何特定方式可以获得它?
先谢谢。
答案 0 :(得分:1)
我只能说Facebook和Twitter,因为它们是我用过的唯一两个社交媒体API。
两个API都是RESTful服务。对于Twitter和Facebook,您需要在透视平台上创建应用程序,以便为将通过RESTful服务获取数据的应用程序获取OAuth令牌。
对于FaceBook,您可以使用Graph API explorer进行开发。这使您无需在FaceBook平台上创建应用程序即可开发。
FaceBook和Twitter都有社区驱动的项目,可以用各种语言访问这些Web服务。既然你是在为Android做这个,我假设你希望你的程序用Java获取这些数据。
RestFB 是我对Java FaceBook库的建议
FacebookClient facebookClient = new DefaultFacebookClient(authToken);
User facebookUser = facebookClient.fetchObject("me", User.class);
Twitter4j 是一个很棒的Java Twitter库
对于FaceBook,核心概念是一个很好的起点。 有关Twitter的更多信息,请参阅overview documentation
答案 1 :(得分:0)
您可以使用Google+的活动API。目前仅限于公开发布,但应足以让您入门。个人资料ID来自用户的个人资料。您还可以通过其他方式获取此内容,包括搜索API。
可以在Google plus页面(https://developers.google.com/+/api/latest/activities)上找到各种语言的文档和简单示例,以下JavaScript示例可能有助于了解如何事情有效:
// globals used for auth, showing debugging
var debug = true;
var key = "your api key from https://code.google.com/apis/console";
function handleRequestIssue(request){
// For now, just show the error
console.log("Error, status:" + request.status + " / response:" + request.responseText);
}
function performXHR(URL){
var objReturn = "";
var request = new XMLHttpRequest();
request.open('GET', URL, false);
request.send(); // because of "false" above, will block until the request is done
// and status is available. Not recommended, however it works for simple cases.
if (request.status === 200) {
if (debug) console.log(request.responseText);
var objReturn = jQuery.parseJSON(request.responseText).items;
if (debug){
for (value in objReturn){
console.log(value);
}
}
}else{
handleRequestIssue(request);
}
return objReturn;
}
// Gets the activities for a profile
function getActivities(profileID){
var activities = null;
var URL = "https://www.googleapis.com/plus/v1/people/" + profileID + "/activities/public?alt=json&key=" + key;
activities = performXHR(URL);
console.log(activities.length);
return activities;
}
此时您可以在调试器中查看活动。您总是可以在div或其他内容中将内容呈现为HTML。
function renderActsComments(activities, identifier, filter){
var renderMe = "";
console.log("activities retrieved: " + activities.length);
for (var i=0; i < activities.length; i++) {
var render = true;
console.log("trying to do something with an activity: " + i);
var activity = activities[i];
if (filter != null && filter.length > 0){
if (activity.crosspostSource.indexOf(filter) == -1){
render = false;
}
}
if (render == true){
renderMe += "<br/><div class=\"article\"><p>" + activity.title + "</p>";
console.log(activity.id);
// get comments
var comments = getCommentsForActivity(activity.id);
var left = true;
for (var j=0; j<comments.length; j++){
if (left){
left = false;
renderMe += "<br/><p class=\"speech\">" + comments[j].object.content + "</p>";
renderMe += "<a href=\"" + comments[j].actor.url + "\">" + comments[j].actor.displayName + "</a>";
renderMe += "<a href=\"" + comments[j].actor.image.url.replace(/\?.*/, "") + "\">";
renderMe += " <img border=0 src=\"" + comments[j].actor.image.url + "\"/></a>";
renderMe += "</p>";
}else{
renderMe += "<br/><p class=\"speechAlt\">" + comments[j].object.content + "</p>";
left = true;
renderMe += "<p class=\"profileAlt\">";
renderMe += "<a href=\"" + comments[j].actor.image.url.replace(/\?.*/, "") + "\">";
renderMe += "<img border=0 src=\"" + comments[j].actor.image.url + "\"/></a>";
renderMe += "<a href=\"" + comments[j].actor.url + "\"> " + comments[j].actor.displayName + "</a>";
renderMe += "</p>";
}
}
renderMe += "</div>";
}
}
console.log("I'm done");
document.getElementById(identifier).innerHTML = renderMe;
return renderMe;
}