Facebook Connect Android - с помощью stream.publish @ http://api.facebook.com/restserver.php - PullRequest
5 голосов
/ 26 января 2010

Я получаю следующую ошибку:

<error_code>104</error_code>
<error_msg>Incorrect signature</error_msg>

Что я должен установить для типа contentType? Должен ли я установить как:

String contentType = "application/x-www-form-urlencoded";

или

String contentType = "multipart/form-data; boundary=" + kStringBoundary; 

Вот как я пишу поток:

HttpURLConnection conn = null;
OutputStream out = null;
InputStream in = null;
try {
    conn = (HttpURLConnection) _loadingURL.openConnection();
    conn.setDoOutput(true);
    conn.setDoInput(true);
    if (method != null) {
        conn.setRequestMethod(method);
        if ("POST".equals(method)) {
            //"application/x-www-form-urlencoded";
            String contentType = "multipart/form-data; boundary=" + kStringBoundary;
            //String contentType = "application/x-www-form-urlencoded";
            conn.setRequestProperty("Content-Type", contentType);
        }

        // Cookies are used in FBPermissionDialog and FBFeedDialog to
        // retrieve logged user
       conn.connect();
       out = conn.getOutputStream();
       if ("POST".equals(method)) {
            String body = generatePostBody(postParams);
            if (body != null) {
                out.write(body.getBytes("UTF-8"));
            }
        }
        in = conn.getInputStream();

Вот метод, который я использую для публикации потока:

private void publishFeed(String themessage) {
    //Intent intent = new Intent(this, FBFeedActivity.class);
   // intent.putExtra("userMessagePrompt", themessage);
  //  intent.putExtra("attachment", 
    Map<String, String> getParams = new HashMap<String, String>();
    // getParams.put("display", "touch");
    // getParams.put("callback", "fbconnect://success");
    // getParams.put("cancel", "fbconnect://cancel");

     Map<String, String> postParams = new HashMap<String, String>();

     postParams.put("api_key", _session.getApiKey());
     postParams.put("method", "stream.publish");
     postParams.put("session_key", _session.getSessionKey());
     postParams.put("user_message", "TESTING 123");
    // postParams.put("preview", "1");
     postParams.put("attachment", "{\"name\":\"Facebook Connect for Android\",\"href\":\"http://code.google.com/p/fbconnect-android/\",\"caption\":\"Caption\",\"description\":\"Description\",\"media\":[{\"type\":\"image\",\"src\":\"http://img40.yfrog.com/img40/5914/iphoneconnectbtn.jpg\",\"href\":\"http://developers.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"Facebook home page\",\"href\":\"http://www.facebook.com\"}}}");
    // postParams.put("user_message_prompt", "22222");


     try {
         loadURL("http://api.facebook.com/restserver.php", "POST", getParams, postParams);
     } catch (MalformedURLException e) {
         e.printStackTrace();
     }
}

Вот так - generatePostBody ():

private String generatePostBody(Map<String, String> params) {
    StringBuilder body = new StringBuilder();
    StringBuilder endLine = new StringBuilder("\r\n--").append(kStringBoundary).append("\r\n");

    body.append("--").append(kStringBoundary).append("\r\n");

    for (Entry<String, String> entry : params.entrySet()) {
        body.append("Content-Disposition: form-data; name=\"").append(entry.getKey()).append("\"\r\n\r\n");
        String value = entry.getValue();
        if ("user_message_prompt".equals(entry.getKey())) {
            body.append(value);
        }
        else {
            body.append(CcUtil.encode(value));
        }

        body.append(endLine);
    }

    return body.toString();
}

Спасибо.

1 Ответ

0 голосов
/ 15 марта 2010

Это из Facebook Wiki разработчиков: http://wiki.developers.facebook.com/index.php/API

Примечание : если вы вручную формируете свой HTTP POST запросы на Facebook, вы должны включить данные запроса в POST тело. Кроме того, вы должны включить Content-Type: заголовок применение / х-WWW-форм-urlencoded .

Использовать multipart / form-data только при загрузке файлов (например, Photos.upload в API Facebook)

Кроме того, основываясь на этой ссылке API, http://wiki.developers.facebook.com/index.php/How_Facebook_Authenticates_Your_Application, это то, что вы делаете неправильно.

1) Не используйте HashMap для хранения параметров Facebook. Параметры должны быть sorted по их ключу. Скорее используйте интерфейс SortedMap и используйте TreeMap для хранения параметров Facebook.

2) Всегда включает параметр sig на карте до отправки вызова в Facebook. Вы получаете «104 Неверная подпись», потому что Facebook не находит параметр sig в вашем запросе.

Ссылка (http://wiki.developers.facebook.com/index.php/How_Facebook_Authenticates_Your_Application) показывает, как именно создать подпись MD5, которую использует Facebook.

Вот как быстро создать значение sig для Facebook.

String hashString = "";
        Map<String, String> sortedMap = null;
        if (parameters instanceof TreeMap) {
            sortedMap = (TreeMap<String, String>) parameters; 
        } else {
            sortedMap = new TreeMap<String, String>(parameters);
        }

        try {
            Iterator<String> iter = sortedMap.keySet().iterator();
            StringBuilder sb = new StringBuilder();
            synchronized (iter) {
                while (iter.hasNext()) {
                    String key = iter.next();
                    sb.append(key);
                    sb.append("=");
                    String value = sortedMap.get(key);
                    sb.append(value == null ? "" : value);
                }
            }
            sb.append(secret);

            MessageDigest digest = MessageDigest.getInstance("MD5");
            byte[] digested = digest.digest(sb.toString().getBytes());

            BigInteger bigInt = new BigInteger(1, digested);
            hashString = bigInt.toString(16);
            while (hashString.length() < 32) {
                hashString = "0" + hashString;
            }
        } catch (NoSuchAlgorithmException nsae) {
            // TODO: handle exception
            logger.error(e.getLocalizedMessage(), e);
        }

        return hashString;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...