I am building an imdb (for movies) app for iOS that communicates with the imdb facebook page. I realize there are some already out there but without giving too much away, mine will be different.
I have figured out how to post a like on somebody else's wall post on that page via the Graph explorer. It is simply
/[postID]/likes using a POST request and having the right permissions.
I realize that I could make this request via a NSURL Connection. But I am almost sure that there is built in request using the iOS Facebook SDK (3.8, most recent). I am very confused how to go about this, the documentation in my opinion is very confusing. I did the research and some people did it via FBRequestConnection but then others said that was not allowed anymore.
So does anyone know how I can like a Facebook post via the Facebook iOS SDK (3.8)
Thank you in advance!