0

ボタンのクリックで Android からパーソナリティ インサイトの POST API を呼び出し、適切な解析後に応答を画面に表示しようとしています。パーソナリティ インサイトの API の詳細はこちらです。

POSTMAN を使用してこれをテストしようとすると、正しい応答が得られます。しかし、Android からこれを呼び出そうとすると、logcat にエラーが表示されず、アプリケーションがエミュレーターで終了しません。API の最初の呼び出しがうまくいきません。

Androidコードについては、このリンクを参照しました

これは私が使用したコードです。私が犯した間違いを教えてください。

編集:

このリンクの例も試しましたが、現在の Android API バージョンではすべてが非推奨のようです。

HTTP Example.java

package com.example.httpexample;
import android.support.v7.app.AppCompatActivity;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;


public class MainActivity extends AppCompatActivity {
    private TextView textView, button;
    TextView textView1;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);   
        textView = (TextView) findViewById(R.id.textView1);

        button = (TextView)findViewById(R.id.button1);
        button.setOnClickListener(new View.OnClickListener(){

            // When user clicks button, calls AsyncTask.
            // Before attempting to fetch the URL, makes sure that there is a network connection.


            @Override
            public void onClick(View v) {

                String stringUrl = "https://gateway.watsonplatform.net/personality-insights/api/v2/profile" (https://gateway.watsonplatform.net/personality-insights/api/v2/profile%27);
                ConnectivityManager connMgr = (ConnectivityManager) 
                    getSystemService(Context.CONNECTIVITY_SERVICE);
                NetworkInfo networkInfo = connMgr.getActiveNetworkInfo();
                if (networkInfo != null && networkInfo.isConnected()) {
                    new DownloadWebpageTask().execute(stringUrl);

                } else {
                    textView.setText("No network connection available.");
                }

            }
        });
    }

    public TextView getTextView()
    {

    TextView txtView = (TextView)findViewById(R.id.textView2);
    return txtView;
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

DownloadWebpageTask.java

package com.example.httpexample;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import org.json.JSONException;
import org.json.JSONObject;
import android.os.AsyncTask;
import android.util.Base64;
import android.util.Log;
import android.widget.TextView;


class DownloadWebpageTask extends AsyncTask<String, Void, String> {

    private static final String DEBUG_TAG = "HttpExample";

    @Override
    protected String doInBackground(String... urls) {
        try {
            return downloadUrl(urls[0]);
        } catch (IOException e) {
            return "Unable to retrieve web page. URL may be invalid.";
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return null;
    }

    public String downloadUrl(String myurl) throws IOException, JSONException{
         InputStream is = null;


            // Only display the first 500 characters of the retrieved
            // web page content.
            int len = 500;

            try {
                URL url = new URL(myurl);
                HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                //conn.setRequestMethod("GET");
                final String basicAuth = "Basic " + Base64.encodeToString(""username":password".getBytes(), Base64.NO_WRAP);
                conn.setRequestProperty ("Authorization", basicAuth); 
                conn.setDoOutput(true); 
                conn.setRequestMethod("POST");
                conn.setRequestProperty("Content-Type", "application/json");
                conn.connect();
                System.out.println("first connection");
                JSONObject contentItems = new JSONObject();
                contentItems.put("id", "");
                contentItems.put("userid", "");
                contentItems.put("created", "int");
                contentItems.put("updated", "int");
                contentItems.put("contenttype", "");
                contentItems.put("charset", "");
                contentItems.put("language", "int");
                contentItems.put("content", "Hi. This is the sample input");
                contentItems.put("parentid", "");
                contentItems.put("reply", false);
                contentItems.put("forward", false);
                System.out.println("connection done");
                int response = conn.getResponseCode();
                Log.d(DEBUG_TAG, "The response is: " + response);

                is = conn.getInputStream();

                // Convert the InputStream into a string
                String contentAsString = readIt(is, len);

                System.out.println("Content " + contentAsString);

                MainActivity obj = new MainActivity() ;

                TextView tv = obj.getTextView();
                tv.setText(contentAsString + response);
                return contentAsString;

            // Makes sure that the InputStream is closed after the app is
            // finished using it.
            } finally {
                if (is != null) {
                    is.close();
                } 
            }

    }



    private String readIt(InputStream stream, int len) throws IOException, UnsupportedEncodingException {
        Reader reader = null;
        reader = new InputStreamReader(stream, "UTF-8");        
        char[] buffer = new char[len];
        reader.read(buffer);
        return new String(buffer);
    }

}
4

1 に答える 1

1

contentItemsオブジェクトをどこにも送信していないようです-オブジェクトを入力しますが、リクエストにペイロードとして含めないでください。

さらに、これはJSON 入力に含める必要がある項目オブジェクトの1 つcontentItemsにすぎません。JSON 入力は次のようになります。

{ "contentItems": [ <item1>, <item2> ] }

上記の項目の 1 つに適合するものを作成しているだけです。

API に簡単な入力を渡す場合は、ヘッダーを含めて、Content-Type: text/plainJSON 形式をしばらく忘れることをお勧めします。

于 2015-08-19T13:12:36.263 に答える