How do I make this "Latest Tweets" content in my website active? It's a part of my website and I'd like to connect it with my twitter account so whenever I tweet something it appears here automatically. Suggestions?
Embeddable timelines make it easy to syndicate any public Twitter timeline to your website with one line of code.
Create an embedded timeline from your widgets settings page on twitter.com, or choose
“Embed this…” from the options menu on profile, search and collection pages.
Just like timelines on twitter.com, embeddable timelines are interactive and enable your visitors to reply, Retweet, and favorite Tweets directly from your pages. Users can expand Tweets to see Cards inline, as well as Retweet and favorite counts. An integrated Tweet box encourages users to respond or start new conversations, and the option to auto-expand media brings photos front and center.
These new timeline tools are built specifically for the web, mobile web, and touch devices. They load fast, scale with your traffic, and update in real-time.
https://twitter.com/settings/widgets - this link allows you to do this + twitter supplies you with the iframe code which you insert into your website - easy.
Related
I have a mobile app (on WinPhone 8.1) that uses Facebook credentials for Azure authed login.
What I'm trying to do:
Provide users an organic way to invite facebook friends to use the app. Important to note, users gain no advantage by inviting friends, however it will enhance their experience as you can compare your progress in the app with the progress of friends (it is not a game).
Where I'm stuck:
I can't use the apprequests dialog, as it is not a game. I would like to use the 'send' dialog, but it is not available in mobile browsers. It is not a website, so using the POST publish API has no valid href to link (other than the app's download page, but that is not what the publish API is meant for).
What should I do?
This post explains how to do it.
Otherwise, I would suggest you to market your app like a game, a bit of gamification should not hurt ! ;)
I am using ShareLinkTask to post URL to social websites like twitter and facebook. Along with the URL ,i want to add a picture URI and the picture should display in sites.Is it possible ? Also is it possible to share when a different user is using the app ?since only one account is in sync and always the posting to sites happens with the account in sync with the phone.Can we have the login again while sharing so that the person using the app can post to his wall?
No. Tasks are somewhat more limited compared to a direct API layer implementation that you would get through a service-based SDK. They are always bound to the accounts that are associated with the device and you cannot log the user in/out with those from the app, unless the user himself decides to switch the accounts.
Also, at this point you cannot attach media content to a ShareLinkTask unless you already uploaded it through a service (such as IMGUR) and just posting a link to it.
I'm having problems displaying a Facebook feed on a webpage. The purpose is to display the feed of a Facebook Page (http://www.facebook.com/kvaernerasa) on an external page, but I'm missing something.
First of all, I'm using Facebook's own "generator" to create the activity feed box:
http://developers.facebook.com/docs/reference/plugins/activity/
It asks for a domain (http://www.kvaerner.com)...and then what?! I want the feed for a Page, so there is no app id. How will it know what feed I'm asking for? I also need the feed to be displayed without requiring that the users are logged in.
I've managed to display the RSS feed (not styled), but would prefer to use Facebook's own plugin. What am I missing here?
Is the Like Box, as mentioned by TommyBs, the only other option? How have other sites implemented this?
"The Activity Feed plugin shows users what their friends are doing on your site through likes and comments" That's the description from FB. To me that means it doesn't show native facebook page feeds, just information relating to the pages on your site so I don't think it's what you're after
I think what you want is the like-box
https://developers.facebook.com/docs/reference/plugins/like-box/
I have a scenario.: My website contains list of Agents. Each agent is having his/her own website. So when any agent enters into my website and searches then he will get list of agent details along with their basic information. Here I want to display people who liked the individual websites using facebook.
Using facepile I had acheived this but facepile works only if the user is logged-in to the facebook. This scenario is also fine with me. But my requirement is I am able to see a white patch of space between the results when user is not connected to FB. I want to make this patch to be visible false when not connected to FB.
I am not using any application or App ID, I just used Iframe and url of agents facebook ID as href.
Instead of the broken facepile plugin, try using the like plugin as it does not exhibit this behaviour.
I need to post on a website the wall notifications of a Facebook group, the group and the website belong to the same entity.
I've looked at many of the options available, but I would apreciate if someone with a bit Facebook developing experience told me what is the best path (most straighforward).
The website is not intented to interact with Facebook in any other way, there would exist no Facebook login button, and this one wall would be the only one being consulted.
I've looked at the possibility of grabbing an rss feed from the wall, but that option doesn't seem to exist.
The website is being done with asp.net (c#).
And Social Plug-ins are Exactly for that purpose. For your requirement you can use Live Stream Plugin. Look Here: http://developers.facebook.com/docs/reference/plugins/live-stream/enter link description here
Similar to your choice of getting an RSS feed of the group activity, you can use the Graph API to get the activity as JSON objects, at which point you can render them to your page.