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.

Interested to find out how to embed data from facebook such as a "facepile" into an email that is generated server side. Can only find doco on adding to a web page.

Realise the email can not using javascript to grab realtime data in the email but interested in grabbing a snap shot in time of the "facepile" and adding that to an email. ie static content

Also interested in doing the same thing with a facebook "activity feed".

share|improve this question

1 Answer

Theoretically yes, but it's incredibly unlikely that any email client will render client-side javascript or iframes, which means effectively there's no point in trying to do this as best-case scenario is that the majority of people will get a broken email, and the rest will have the email automatically blocked or deleted because of the javascript

share|improve this answer
Yes - realise that is javascript is not an option - more looking for a solution to get the data and store offline then add this to the email – Matt Bullock Aug 24 '12 at 22:13
Well you could do it manually I guess, but then the question becomes very vague - it'd be up to your app to assemble all the relevant data from the api, which depends entirely on what data you want – Igy Aug 24 '12 at 22:18
not manually - want to create an email on the fly with this data from facebook - the sample code is for a webpage - want to know how to add it to an email with code dynamically – Matt Bullock Aug 25 '12 at 12:28
When i said manually i meant that instead of relying on some prebuilt solution, you'd need to do this in your app's code, not by hand – Igy Aug 25 '12 at 14:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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