「圖片」變量在牆上,它從一個URL職位PIC,但你可以把它改成
protected void postPicToWall(String userID, String msg, String caption, String picURL){
try {
if (isSession()) {
String response = mFacebook.request((userID == null) ? "me" : userID);
Bundle params = new Bundle();
params.putString("message", msg);
params.putString("caption", caption);
params.putString("picture", picURL);
response = mFacebook.request(((userID == null) ? "me" : userID) + "/feed", params, "POST");
Log.d("Tests",response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("Error", "Blank response");
}
} else {
// for relogin
Log.d(TAG, "sessionNOTValid, relogin");
mFacebook.authorize(this, PERMS, new LoginDialogListener());
}
}catch(Exception e){
e.printStackTrace();
}
}
如果你有沒有自己的ID通字那麼你可以一切。 –
我正在討論如何以編程方式發佈。 – veerendra
我想你想在自己的牆上上傳多張圖片上的圖片+消息,那麼如果沒有用戶通過編程,你怎麼辦? –