Get X newsfeed items from a global identity
Given a user's findmeon.com id ( 32 hex chars ) , will list 1-15 of the last global newsfeed items visible to that id
Location
- http://api.FindMeOn.com/v1/findmeon/get_newsfeed?findmeon=%s&api_key=%s
Required Query Args
- api_key - can be obtained from http://FindMeOn.com/my/
- findmeon [string]- 32 char hex id for identity
Optional Query Args
- qty [int] - number of shouts to return, 1-15 is valid, default is 5
- js [bool] - return data as a javascript line
Returns
- newsfeed - an array containing
- meta_timestamp - timestamp of entry
- meta_originator_url - originating profile url of entry
- meta_fmoid - originating findmeon hexid of entry
- data - content of entry
Alternate Path
An alternate path is provided for use as a 'dynamic js' page element
- http://api.FindMeOn.com/v1/findmeon/findmeon=xxxxxxxxxxXXXXXXXXXXxxxxxxxxxxXX/api_key=yyyyyYYYYYyy/qty=z/get_newsfeed.js
Alternate Path - Example Usage
<script src="http://api.FindMeOn.com/v1/findmeon/findmeon=xxxxxxxxxxXXXXXXXXXXxxxxxxxxxxXX/api_key=yyyyyYYYYYyy/qty=z/get_newsfeed.js" type="text/javascript"></script>
Alternate Path - Example Result
The alternate path will return info such as this
var fmo__newsfeed_####findmeon_id####= { json object };
as an example
var fmo__newsfeed_xxxxxxxxxxXXXXXXXXXXxxxxxxxxxxXX= { "result":"success" , "shouts":[] };
«Back To v1 Documentation