2013-07-29 1 views
0

Android 용 최신 Facebook SDK (3.0.2)를 사용하고 있으며 특정 언어로 알림을 검색하고 싶습니다. 이 URL을 사용하면 : me/notifications 모든 것이 잘 작동하고 데이터를받을 수 있지만 URL을 설정하면 me/notifications?locale=fr_FR, 그냥 빈 개체가 수신됩니다.지정한 언어로 페이스 북 그래프 데이터를 가져올 수 없습니다.

페이스 북 그래프 탐색기에서 두 URL이 모두 작동하지만 내 응용 프로그램에서는 첫 번째 브라우저 만 작동합니다. 나는이 문제를 해결하는 방법이있다

String URLnotifications = "me/notifications?locale=fr_FR"; // not working 
String URLnotifications = "me/notifications"; // working 
+0

사용하기 : 문제는이 변수에

 session = Session.getActiveSession(); if (session != null && session.isOpened()) { Request request = Request.newGraphPathRequest(session, URLnotifications, new Request.Callback() { @Override public void onCompleted(Response response) { GraphObject object = response.getGraphObject(); } }); request.executeAsync(); } 

가 :

내 코드이다 솔루션] (http://stackoverflow.com/a/13937831/2579656) – 3afrit

답변

1

시도가

Bundle params = new Bundle(); 
params.putString("locale", "fr"); 
request.setParameters(params);