2

I develop an application which can list mutual friends who share same links like me. Ex: I share a link: http://example.com over my application. Friend A, Friend B, Friend C share this link too. Matter is how can I know Friend A, Friend B share link "http://example.com".

Alex Bui
  • 41
  • 4

1 Answers1

1

If everything gets shared via your App, you can just store the shared link in your own Database - with the User ID of the User who shared it. After that it should be easy to compare.

andyrandy
  • 72,880
  • 8
  • 113
  • 130
  • Thanks! Is that exactly that fb's not support us to access information in this case :), of course We can use this way – Alex Bui Sep 10 '14 at 08:55
  • yeah, there is no way to do this with the api. after all it´s faster for you anyway, api calls take a bit longer than just doing a quick select in your own database. – andyrandy Sep 10 '14 at 09:00