Results 1 to 3 of 3

Thread: facebook event feed from a specific user

  1. #1
    Join Date
    Sep 2012
    Posts
    3

    Default facebook event feed from a specific user

    I want to query the list of public events from a specific user
    Is that possible in spring?
    Thank you so much

  2. #2
    Join Date
    Aug 2004
    Posts
    1,072

    Default

    There are a number of methods in the EventOperations interface for working with events. If you have a FacebookTemplate in hand, you can get an instance of EventOperations via the eventOperations() method.

    The question is: What events do you want? The events that a user has sent invitations for? The invitations that a user has received? RSVP'd as attending? Declined? Maybe?

    The Facebook Graph API endpoint for fetching events for a user is /{user ID}/events. That same endpoint is bound to EventOperations.getInvitations(). It sounds like that might be what you're looking for. If not, please clarify. If it is available from Facebook's Graph API, you can get it via Spring Social...either via an existing API binding method or indirectly via methods on the GraphApi interface (which the Facebook interface extends and FacebookTemplate implements).
    Craig Walls
    Spring Social Project Lead

  3. #3
    Join Date
    Sep 2012
    Posts
    3

    Default

    get Invitations has exactly what I need.
    thank you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •