You need to sign in to do that
Don't have an account?

What entityId to a put for a custom VF page?
I'm trying to put a Chatter feed on a custom VF page. I thought I could to the following:
<apex:page >
<chatter:feedWithFollowers entityId="{!$CurrentPage.Id}" />
</apex:page>
But there's no Id associated with the page. Any tips? Thanks.
<apex:page >
<chatter:feedWithFollowers entityId="{!$CurrentPage.Id}" />
</apex:page>
But there's no Id associated with the page. Any tips? Thanks.
The Id should be related to a User or a Record in the URL. Try the following: To try it go to .../apex/YourPage?Id=YourIdHere
Regards