function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Karthick RajaKarthick Raja 

Custom Chatter in VisaulforcePage

Hi folks,
           Can anyone tell me how to create custom chatter in visualforce  page?
I wanna all the features that are availble in chatter to Visualforce page?

Thanks in advance
Karthick
RamuRamu (Salesforce Developers) 
The below article might help

https://developer.salesforce.com/releases/release/Winter11/Chatter+Components+for+Visualforce
Karthick RajaKarthick Raja
@Ramu,
    I have seen that link but i wanna get features like all the feeds posted by all user
There are 4 user in my org. like user1,user2,user3,user4
If user 1 post a feed in a visualforce page then user2,user3,user4 can see that feed 
for that how can i do ?

<apex:page >
<chatter:feedWithFollowers entityId="{!$User.Id}"/>first user
<chatter:follow entityId="0059000000320z1AAA" />//second user id
</apex:page>
the above code displays current user(first user) feeds not the second user ..
Please help1
 
RamuRamu (Salesforce Developers) 
Hi Karthick, to have the other 3 users access to the feed posted by the first user, they should be following the object on which the post has been made. For example, if the feed post is done on a particular record, the other users should be following the record in order to get the feed post. You may use some auto-follow methodologies in order to accomplish this. The below article has an example of how to make the users autofollow

http://bobbuzzard.blogspot.sg/2011/05/chatter-autofollow-users.html

Never the less, we are using the chatter component for visualforce pages which definately abides to the standard policies of 'Following' someone or something in order to get the feed. Hope this helps !!
Karthick RajaKarthick Raja
Hi Ramu,
       Thanks for quick your response.
My requirement is :(Embedding chatter in Visualforce page)
As an end user,Wanna  follow the user dynamacially,get another user feeds in chatter using visualforce page.
I dono how to follow the user and get the feeds of the user in visualforce 
Please help!
 
Karthick RajaKarthick Raja
@Ramu,
      Please help on this