2011-09-28 46 views
1

FB出版了我所有的Android應用程序今天停止工作話說進故事的一個問題 - 「」有產生從提供的數據飼料的故事有問題「」。他們一直在爲過去6個月工作的罰款Facebook的Android SDK中 - 有產生從提供的數據

所有應用程序所做的是發佈在用戶的牆壁報價。我使用下面的代碼來做到這一點 -

Bundle parameters = new Bundle(); 

parameters.putString("attachment", myAttachent); 
facebookClient.dialog(this, "stream.publish", parameters, this); 

出版工作得很好,直到現在。任何想法可能是錯的?

回答

1

現在此問題已經FB開發申請

錯誤。這似乎已經與他們的API服務的問題。我已經測試並要求我的客戶確認。

他們已經更新了錯誤的狀態爲「固定」

http://developers.facebook.com/bugs/295765603772094

+0

它確實已經開始爲我所有的應用程序再次合作,除了一個小的變化 - 取消按鈕不再需要回我的活動,只需重新加載頁面。但是,這是一個單獨的錯誤,我猜。 –

1

這是我工作的代碼........目前檢查............

try { 

        JSONObject me = new JSONObject(mFacebook.request("me")); 
        fbname = me.getString("name"); 
        first_name = me.getString("first_name"); 

        System.out.println("Name :: " + fbname); 
        System.out.println("FName :: " + first_name); 

        JSONObject attachment = new JSONObject(); 
        attachment.put("message", "Oil and Gas Navigator"); 

        attachment.put("href", link); 
        attachment.put("description", "<B>" + title + "" + desc); 
        Bundle params = new Bundle(); 
        params.putString("attachment", attachment.toString()); 

        JSONObject actionLink = new JSONObject(); 
        actionLink.put("text", "Link"); 
        actionLink.put("href", link); 
        JSONArray jasonarray = new JSONArray().put(actionLink); 
        params.putString("action_links", jasonarray.toString()); 

        mFacebook.dialog(mActivity, "stream.publish", params, 
          new SampleDialogListener()); 

       } catch (Exception ex) { 
        ex.printStackTrace(); 
       } 
+0

感謝Divyesh,讓我來試試你的代碼,並取回。 –

1

@ihurupin我可以證實這個問題影響iOS設備也。守則工作,直到〜24小時之前(我是專門調試添加自定義新聞提要)。現在,讓一個漂亮的「有生成從提供的數據進故事的一個問題」在這裏fb dev bug tracking

相關問題