I am very new to this, my first app, learning as I go, and a little confused.
I've searched google and learned what I have from the facebook developer docs, info here on stackoverflow, and a couple of blogs that had walkthroughs on setting up oauth, but mostly I'm working with code from http://www.idolbin.com/blog/web-development/facebook/people-search-using-facebook-graph-api-find-users-through-name-or-email/.
I have two pages on a WordPress site, using different page templates, both of which include a file in the theme I created that handles the Facebook token and graph api call. One page is used to search facebook users. This page is working perfectly, getting a token and results, but the siteurl and redirect uri have to be set to that specific pages permalink for it to work (maybe there is a better way).
The other page takes a facebook user name (from the URL, GET variable, ?username=NAME), looks up the id, and displays the feed for the specified user id and any other information I can pull (if publicly displayed). However I'm using rewrite rules to make the url look nicer, so instead of /page?username=NAME, it is /page/NAME (maybe not doing this would solve the problem I'm having, but it's not the ideal solution).
My first thought was I could have the siteurl and redirect uri set to just the domain name, and any page under that domain would authenticate. But I quickly learned this was not going to work, I had to put the specific page url for the search page to work. For the user feed page, I was hoping I could make a second app and point it to the other page without the username, but that's not working either.
Do I really need an app for every different permalink on my site that uses the Facebook API like this? Eventually I plan to have hundreds of these pages, so obviously this won't work.
A more general question: How can I use the same app and get a token that I can use across the whole site, regardless of what the page is? This seems to me to be how it should be. Why does it have to be so specific? Or am I doing something completely wrong (very possible)?
I am still very new to this and would appreciate any help.