Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app built with appcelerator that uses Twitter to show my facebook statuses as the "News" section.

Why do i go thru Twitter?

Well i want to make my app only to use FB as a CMS and it works great to get all other stuff out from there.

I DONT want the user to be forced to login to Facebook or get some app permission to bla bla bla just to see my photos and read my statuses and see my events so thats why i am doing it like this.

The photos i can get with a simple json call but the events is also going thru a third party source .

I think it is completely up the walls that you need an access_token to read a status update that you could read anyway if you are“nt logged in on FB using this:

https://www.facebook.com/permalink.php?story_fbid=249250751841139&id=243815045718043

Well back to the Twitter issue.

Like i said it works fine BUT YOU ONLY GET 140 CHARACTERS with Twitter so if you write a longer status it will be a link to your (See link above) status.

I would like to get the status and put it in a textare in a new window as plain text instead no regards on the lenght of the status.

So, is there any other site like Twitter that you could get your statuses from and then use their api to get the text?

Or do you have another solution?

Thanx

//R

share|improve this question

closed as not a real question by Igy, DMCS, Bill the Lizard Apr 2 at 16:06

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Ok i found the answer to this.

I can get the FB feed by passing an FB app's access token. (In Appcelerators Titanium)

var win = Ti.UI.currentWindow;   
var xhr = Titanium.Network.createHTTPClient();
 xhr.onload = function() {
var TokenResponse = this.responseText;
var TokenArray = TokenResponse.split("=");
var Token = TokenArray[1];
if (Token !="")
{
    // with your token you can read public feeds   
 getFeeds(Token);
}    

};

  xhr.open("GET","https://graph.facebook.com/oauth/access_token?client_id=XXXXXXXXXXX&client_secret=XXXXXXXXXXXXX&grant_type=client_credentials");
 xhr.send();

 var table = Ti.UI.createTableView({
       top: 0,
       bottom: 0,
        backgroundColor: 'transparent',

        separatorColor:'transparent',
    });

    function getFeeds(Token)
{

var tableData = [];
var json, data, name, picture, description;

Ti.Facebook.requestWithGraphPath(Titanium.App.Properties.getString("pageID") +'/feed', {access_token: Token}, 'GET', function(e){
    if (e.success) {

        json = JSON.parse(e.result);
for (i = 0; i < json.data.length; i++) {
    data = json.data[i];
    row = Ti.UI.createTableViewRow({
        height:'80dp',
         // backgroundImage : 'images/tablebgl.png',
        backgroundColor: 'transparent',
        separatorColor:'transparent',
    });

  var  name = Ti.UI.createLabel({
        text: data.from.name,
        font:{
            fontSize:'17dp',
        fontWeight:'bold'
    },
    height:'20dp',
    left:'90dp',
    top:'9dp',
    color:'#eee',
    touchEnabled:true
    });
    row.add(name);

    var  message = Ti.UI.createLabel({
        text: data.message,
        font:{
            fontSize:'13dp'
    },
    height:'30dp',
    left:'90dp',
    top:'33dp',
    color:'#eee',
    shadowColor: '#111',
    shadowOffset:{x:0,y:1},
    touchEnabled:true
    });
    row.add(message);
      tableData.push(row);
    }


        table.setData(tableData);


 } else {
        if (e.error) {

        } else {
            alert("Something else just happend...");
        }
    }
  });

 }
        win.add(table);
  win.addEventListener('focus', function(t) {
 getFeeds();
});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.