I am looking to retrieve data from the "fb_page_categories" endpoint, which provides an array of categories a page can be categorized under. The format for this request is as follows:
GET graph.facebook.com
/fb_page_categories?
Once this request is made, the response typically looks like this:
{
"data": [
{
"name": "Interest",
"fb_page_categories": [
{
"name": "Literary Arts",
"id": "856055631167537"
},
{
"name": "Performance Art",
"id": "756092301147942"
},
{
"name": "Performing Arts",
"id": "1758092431143387"
},
After retrieving these results, I need to filter them based on specific categories and then further refine them by proximity to the current location. As someone who is new to Java, I'm unsure where to start or how to write the necessary code. Any guidance, articles, Stack Overflow questions, GitHub projects, or any other resources that could point me in the right direction would be greatly appreciated. Thank you!