2013-03-08 1 views
0

직접 벽 게시물 자체에서 볼 수있는 웹 사이트에서 기본 대화 형 플래시 콘텐츠를 게시하려고합니다. 게시자의 의미로 게시 내용 자체를 플래시 콘텐츠로 보는 것인데 here (보기 파란 종양 이미지)을 설명하려고합니다. 그러나 link 여기에, 이전의 SDK를 사용하는 예를 보여줍니다 나는 그것이 가정된다대로 작동하지하지 않는 것 썼다 코드FB Android SDK 3을 사용하여 대화 형 플래시를 게시하는 방법은 무엇입니까?

Bundle postParams = new Bundle(); 
      postParams.putString("name", "Facebook SDK for Android"); 
      postParams.putString("caption", "Build great social apps and get more installs."); 
      postParams.putString("description", "The Facebook SDK for Android makes it easier and faster to develop Facebook integrated Android apps.");    
      postParams.putString("type", "video"); 
      postParams.putString("video:width", "560"); 
      postParams.putString("video:height", "400"); 
      postParams.putString("video:type", "application/x-shockwave-flash"); 
//   postParams.putString("link", "http://patrickcheatham.com/wp-content/interactives/panoramas/_common/krpano.swf?" + 
//     "pano=http://patrickcheatham.com/wp-content/interactives/panoramas/201012_shanghai_bund/tour_facebook.xml"); 
      postParams.putString("picture", "http://patrickcheatham.com/wp-content/uploads/2011/03/shanghai_thumbnail.jpg"); 

참고 :

  1. 내용은 할 수 게시 된 데이터가 아직 완전히 확정되지 않았으므로 더미 데이터를 사용하는 입니다.
  2. FB 앱이 벽에 완벽하게 게시됩니다. 단지 일 것입니다.

내가 뭔가를 놓친 경우 알려 마십시오 또는 추가 정보가 필요한 경우, Graph API- Post를 통과 후에

+0

링크가 나를 위해 연결되지 않습니다. 또한이 매개 변수를 사용하여 어떤 경로에 게시하고 있습니까? –

답변

0

을 요청, 나는 약 source을 알게하고 그것을했다 또한 typeapplication/x-shockwave-flash을해야합니다.

Bundle postParams = new Bundle(); 
postParams.putString("message", "the message is from DemoApp"); 
postParams.putString("name", "Panorama images"); 
postParams.putString("caption", "Test for viewing panorama images in Facebook"); 
postParams.putString("description", "The Facebook SDK for Android"); 
postParams.putString("type","application/x-shockwave-flash");    
postParams.putString("source", "http://patrickcheatham.com/wp-content/interactives/panoramas/_common/krpano.swf?" 
          +"pano=http://patrickcheatham.com/wp-content/interactives/panoramas/201012_shanghai_bund/tour_facebook.xml"); 
postParams.putString("picture", "http://patrickcheatham.com/wp-content/uploads/2011/03/shanghai_thumbnail.jpg");