Richard Stenstierna

less info
36 reputation
6
bio website
location
age
visits member for 1 year, 7 months
seen May 13 at 7:10
stats profile views 22

Mar
27
asked Get facebook event cover pic with php
Feb
24
comment Get bigger picture from facebook links in feed
Yes! That did the trick! Thanx!
Feb
24
accepted Get bigger picture from facebook links in feed
Feb
22
asked Get bigger picture from facebook links in feed
Jan
13
comment Passing a variable with appcelerator titanium Functions
Hi. I have downsized my image.js to this: pastie.org/5678184
Jan
13
answered facebook get status with other service then Twitter
Jan
13
comment Passing a variable with appcelerator titanium Functions
Ok.. As i said earlier i am really bad at passing this back and forth so if you pls could help me with this maybe i'd understand how it works. Here is full code for my tableView. pastie.org/5676117 And here is my image.js pastie.org/5676123 Thanx
Jan
12
asked Passing a variable with appcelerator titanium Functions
Jan
11
comment Facebook cover photo with graph API
Its just impossible.....
Jan
11
comment Facebook cover photo with graph API
Actually it does.... I am already calling my page feed to get all the status and comments. The thing i want to do is to show both the cover photo and profile pic, name and message in the rows. But to make a call for the cover photo i would have to use data.from.id to make the > graph.facebook.com/data.from.id?fields=cover and then parse data.cover.source to get the image. And i dont know how to get that to work.....
Jan
11
comment Facebook cover photo with graph API
Actually it does....
Jan
11
asked Facebook cover photo with graph API
Jan
7
comment Facebook pages tokens and uploads if not admin
I have my page so that anyone can post whatever they want. But when i try to do this: var data = { picture: image, message: 'My cool message', }; Ti.Facebook.requestWithGraphPath(Titanium.App.Properties.getString("pageID") +'/photos', data , "POST", function(e){//some stuff }; It wont put the image on the page but on my(!) wall I can post messages to my page but not pics.
Jan
7
asked Facebook pages tokens and uploads if not admin
Jan
7
accepted Get facebook page access_token appcelerator arg missing
Jan
7
comment Get facebook page access_token appcelerator arg missing
` Ti.Facebook.requestWithGraphPath('/'+ Titanium.App.Properties.getString("sidnamn"), {fields: 'access_token'}, 'GET', function(resp) { if(resp.success) { data = JSON.parse(resp.result); alert(data); } else { if (resp.error) { alert(resp.error); } else { alert("Unkown result"); } } }); });` will get med the pageID How can i get the page token?
Jan
7
comment Get facebook page access_token appcelerator arg missing
I get "Unkown result" when i run that. Do i need to parse something from json to get the access_token? How can i run this to see the json that it returns so i know how to parse it?
Jan
7
comment Get facebook page access_token appcelerator arg missing
My good sir. You're right of course. But now i have another dilemma. Ti.Facebook.requestWithGraphPath('/'+ Titanium.App.Properties.getString("sidnamn"), {fields: 'access_token'}, 'GET', function(resp) { if(resp.access_token) { alert(resp.access_token); } else { if (resp.error) { alert(resp.error); } else { alert("Unkown result"); } } }); });
Jan
6
comment Get facebook page access_token appcelerator arg missing
Titanium.App.Properties.getString("sidnamn") is PageID.
Jan
6
asked Get facebook page access_token appcelerator arg missing