0

는 지금은 따옴표를 포함하는 일부 응용 프로그램을 개발하고 그리고 내가 SDK 3을 사용하고 내가 로그인을 할 수 있지만 대화없이 벽에 게시 할 수 없습니다 내 페이스 북의 벽안드로이드 애플 리케이션에서 대화없이 페이스 북의 벽에 게시하는 방법?

에 어떤 견적을 공유 할 수있는 기능을 원하는?

이 내 포스트 기능입니다 : -

private void PublishToFeedInBackground() { 

    final Bundle _postParameter = new Bundle(); 
    _postParameter.putString("name", "ahmed"); 
    _postParameter.putString("link", "eew"); 
    _postParameter.putString("picture", "ew"); 
    _postParameter.putString("caption", "we"); 
    _postParameter.putString("message", "efwefwefwe"); 
    _postParameter.putString("description", "few"); 


    final List<String> PERMISSIONS = Arrays.asList("publish_stream"); 

    if (Session.getActiveSession() != null) { 
     NewPermissionsRequest reauthRequest = new Session.NewPermissionsRequest(this, PERMISSIONS); 
     Session.getActiveSession().requestNewPublishPermissions(reauthRequest); 
    } 

    this.runOnUiThread(new Runnable() { 
     @Override 
     public void run() { 
      Request request = new Request(Session.getActiveSession(), "me/feed", _postParameter, HttpMethod.POST); 

      RequestAsyncTask task = new RequestAsyncTask(request); 
      task.execute(); 
     } 
    }); 
} 
+0

를 시도? –

+0

나는 어떤 대화라도 원하지 않는다. .. 나는 단지 벽에 직접 붙이고 싶다 –

답변

0

이오고 어떤 대화 this-

[FBRequestConnection startWithGraphPath:@"feed" parameters:fbArguments HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {}]; 

Reference

+0

나는 안드로이드가 아니다 ios이다. –