我無法上傳從SD卡在Facebook上的圖像...我用下面的代碼....但它沒有給我錯誤,但在同一時間它沒有上傳圖片從android SD卡上傳圖片到facebook
byte[] data = null;
try {
FileInputStream fis = new FileInputStream(filepath);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 2;
Bitmap bi = BitmapFactory.decodeStream(fis);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
data = baos.toByteArray();
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.d("onCreate", "debug error e = " + e.toString());
}
Bundle params = new Bundle();
params.putString("method", "photos.upload");
params.putByteArray("picture", data);
我增加了這段代碼,但在facebook對話框中顯示「發生錯誤」,請稍後重試。 –
它在logcat中顯示的內容?貼吧在這裏 –
{「錯誤」:{「消息」:「一個積極的訪問令牌必須用於查詢當前用戶的信息。」,「類型」:「OAuthException」,「代碼」:2500}} –