Solution for the Problem
I figured out a solution witch works in my case. What needs to be present:
- Register your App on Facebook Developers
- The Page needs to be published and public
- Get de APP_ID and APP_SECRET out of your registered App, with those you can get the Access Token like following
https://graph.facebook.com/oauth/access_token?type=client_cred&client_id="+APP_ID+"&client_secret="+APP_SECRET
Here's the Code for it:
private static final String ACCESS_TOKEN_QUERY = "https://graph.facebook.com/oauth/access_token?type=client_cred&client_id="+APP_ID+"&client_secret="+APP_SECRET;
private static final String FEED_URL = "https://graph.facebook.com/"+PAGE_ID+"/feed?";
private static String accesstoken = "";
private static String jsonresponse = "";
Context context;
String line = null;
final ArrayList<HashMap<String, String>> videolist = new ArrayList<HashMap<String, String>>();
//Get AccessToken
try{
URL url = new URL(ACCESS_TOKEN_QUERY);
URLConnection conn = url.openConnection();
StringBuilder sb = new StringBuilder();
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
//read d response till d end
while ((line = rd.readLine()) != null) {
sb.append(line + "\n");
}
accesstoken = sb.toString();
Log.v("log_tag", "Append String " + accesstoken);
} catch (Exception e) {
Log.e("log_tag", "Error converting result " + e.toString());
}
//Get JSON
try{
URL url = new URL(FEED_URL+accesstoken);
URLConnection conn = url.openConnection();
StringBuilder sb = new StringBuilder();
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
sb.append(line + "\n");
}
jsonresponse = sb.toString();
Log.v("log_tag", "Append String " + jsonresponse);
} catch (Exception e) {
Log.e("log_tag", "Error converting result " + e.toString());
}
//Here you got the jsonresponse now, with which you can go on.
The good thing is you don't even need to have the Facebook SDK in your App.
Best Regards
safari