Skip to content

Instantly share code, notes, and snippets.

@ruggi
Created January 17, 2018 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruggi/de84e2692cd4e780a3aa055e55f182f9 to your computer and use it in GitHub Desktop.
Save ruggi/de84e2692cd4e780a3aa055e55f182f9 to your computer and use it in GitHub Desktop.
resp, err := rankedFeed.GetActivitiesWithRanking("popularity") // you can also add optional read options
if err != nil {
// ...
}
for i, activity := range resp.Results {
log.Println(i+1, activity.ForeignID, activity.Score)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment