Using the following coding, I can get the JSON response of all events on facebook:
eventsValue = new URL(
"https://graph.facebook.com/me/events?access_token=AAACEdEose0cBAIZBliHWLH30kpzoYtdnOBsvroLhZCrwAFxZBy7fSAnyFNspOU8f5WW9ShVWztHZAcLbsW0tigXpDFJXIR7ZAsfby62zMdqrzgmvfAJUa");
Log.d("Events Value ", eventsValue.toString());
This code works fine and displays all events before the link gets expired. Problem here is that the link gets expired all the time and I need to hard code.
I would like my program to work without having to hard code the URL all the time.
Any suggestions are welcome!