認証を必要とするサーバーへのPOST要求を生成します。次の方法を使用しようとしました。
private synchronized String CreateNewProductPOST (String urlString, String encodedString, String title, String content, Double price, String tags) {
String data = "product[title]=" + URLEncoder.encode(title) +
"&product[content]=" + URLEncoder.encode(content) +
"&product[price]=" + URLEncoder.encode(price.toString()) +
"&tags=" + tags;
try {
URL url = new URL(urlString);
URLConnection conn;
conn = url.openConnection();
conn.setRequestProperty ("Authorization", "Basic " + encodedString);
conn.setDoOutput(true);
conn.setDoInput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();
// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) {
// Process line...
}
wr.close();
rd.close();
return rd.toString();
} catch (MalformedURLException e) {
e.printStackTrace();
return e.getMessage();
}
catch (IOException e) {
e.printStackTrace();
return e.getMessage();
}
}
ただし、サーバーは認証データを受信しません。認証データを追加することになっている行は次のとおりです。
conn.setRequestProperty ("Authorization", "Basic " + encodedString);
そしてライン
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
iOExceptionもスローします。
とにかく、POSTとUrlConnectionを使用して認証を有効にするために、上記のロジックの修正を提案できる人がいればとても感謝しています。
ただし、GETリクエストに同じロジックが使用されている場合はすべて正常に機能しますが、当然のことながら想定どおりに機能しません。
すばらしい ここにある例 。 Powerlord 正解、 下 、POST必要です HttpURLConnection
、代わりに。
以下はそのためのコードです。
URL url = new URL(urlString);
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
conn.setRequestProperty ("Authorization", encodedCredentials);
OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
writer.write(data);
writer.flush();
String line;
BufferedReader reader = new BufferedReader(new
InputStreamReader(conn.getInputStream()));
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
writer.close();
reader.close();
URLConnection
をHttpURLConnection
に変更して、POST request。
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
提案(...コメント内):
これらのプロパティも設定する必要があるかもしれませんが、
conn.setRequestProperty( "Content-type", "application/x-www-form-urlencoded");
conn.setRequestProperty( "Accept", "*/*" );
これがPOST=リクエストであると指定しているコードにはどこにも表示されません。再度、それを行うには _Java.net.HttpURLConnection
_ が必要です。
実際、HttpURLConnection
の代わりにURLConnection
をconn.setRequestMethod("POST");
と共に使用することを強くお勧めし、それでも問題が発生するかどうかを確認します。
oAuth外部アプリへの認証(INSTAGRAM)ステップ3「コードを受け取った後にトークンを取得する」
また、「web.xmlのコールバックと登録されたコールバックURL:localhost:8084/MyAPP/docs/insta/callback」という名前で構成されたコールバックサーブレットを使用して、いくつかのローカルホストURLを使用して機能したことも述べておく価値があります
ただし、認証手順を正常に完了した後、同じ外部サイト「INSTAGRAM」を使用してタグのGETを実行したり、メディアを使用して初期メソッドを使用してJSONデータを取得したりすることはできませんでした。私のサーブレット内で、例えばapi.instagram.com/v1/tags/MYTAG/media/recent?access_token=MY_TOKENのみのメソッドが見つかりました [〜#〜] here [〜#〜] working
すべての貢献者に感謝します
URL url = new URL(httpurl);
HashMap<String, String> params = new HashMap<String, String>();
params.put("client_id", id);
params.put("client_secret", secret);
params.put("grant_type", "authorization_code");
params.put("redirect_uri", redirect);
params.put("code", code); // your INSTAGRAM code received
Set set = params.entrySet();
Iterator i = set.iterator();
StringBuilder postData = new StringBuilder();
for (Map.Entry<String, String> param : params.entrySet()) {
if (postData.length() != 0) {
postData.append('&');
}
postData.append(URLEncoder.encode(param.getKey(), "UTF-8"));
postData.append('=');
postData.append(URLEncoder.encode(String.valueOf(param.getValue()), "UTF-8"));
}
byte[] postDataBytes = postData.toString().getBytes("UTF-8");
HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
conn.setRequestProperty("Content-Length", String.valueOf(postDataBytes.length));
conn.setDoOutput(true);
conn.getOutputStream().write(postDataBytes);
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8"));
StringBuilder builder = new StringBuilder();
for (String line = null; (line = reader.readLine()) != null;) {
builder.append(line).append("\n");
}
reader.close();
conn.disconnect();
System.out.println("INSTAGRAM token returned: "+builder.toString());
POSTリクエスト呼び出しを送信するには:
connection.setDoOutput(true); // Triggers POST.
リクエストでテキストを送信したい場合:
Java.io.OutputStreamWriter wr = new Java.io.OutputStreamWriter(connection.getOutputStream());
wr.write(textToSend);
wr.flush();
API 22では、BasicNamevalueペアの使用は廃止され、代わりにHASMAPを使用します。 HasMapの詳細については、こちらをご覧ください hasmap developer.Androidの詳細
package com.yubraj.sample.datamanager;
import Android.content.Context;
import Android.os.AsyncTask;
import Android.os.Bundle;
import Android.text.TextUtils;
import Android.util.Log;
import com.yubaraj.sample.utilities.GeneralUtilities;
import Java.io.BufferedInputStream;
import Java.io.BufferedReader;
import Java.io.BufferedWriter;
import Java.io.IOException;
import Java.io.InputStream;
import Java.io.InputStreamReader;
import Java.io.OutputStream;
import Java.io.OutputStreamWriter;
import Java.io.UnsupportedEncodingException;
import Java.net.HttpURLConnection;
import Java.net.URL;
import Java.net.URLEncoder;
import Java.util.HashMap;
import Java.util.Map;
import javax.net.ssl.HttpsURLConnection;
/**
* Created by yubraj on 7/30/15.
*/
public class ServerRequestHandler {
private static final String TAG = "Server Request";
OnServerRequestComplete listener;
public ServerRequestHandler (){
}
public void doServerRequest(HashMap<String, String> parameters, String url, int requestType, OnServerRequestComplete listener){
debug("ServerRequest", "server request called, url = " + url);
if(listener != null){
this.listener = listener;
}
try {
new BackgroundDataSync(getPostDataString(parameters), url, requestType).execute();
debug(TAG , " asnyc task called");
} catch (Exception e) {
e.printStackTrace();
}
}
public void doServerRequest(HashMap<String, String> parameters, String url, int requestType){
doServerRequest(parameters, url, requestType, null);
}
public interface OnServerRequestComplete{
void onSucess(Bundle bundle);
void onFailed(int status_code, String mesage, String url);
}
public void setOnServerRequestCompleteListener(OnServerRequestComplete listener){
this.listener = listener;
}
private String getPostDataString(HashMap<String, String> params) throws UnsupportedEncodingException {
StringBuilder result = new StringBuilder();
boolean first = true;
for(Map.Entry<String, String> entry : params.entrySet()){
if (first)
first = false;
else
result.append("&");
result.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
result.append("=");
result.append(URLEncoder.encode(entry.getValue(), "UTF-8"));
}
return result.toString();
}
class BackgroundDataSync extends AsyncTask<String, Void , String>{
String params;
String mUrl;
int request_type;
public BackgroundDataSync(String params, String url, int request_type){
this.mUrl = url;
this.params = params;
this.request_type = request_type;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... urls) {
debug(TAG, "in Background, urls = " + urls.length);
HttpURLConnection connection;
debug(TAG, "in Background, url = " + mUrl);
String response = "";
switch (request_type) {
case 1:
try {
connection = iniitializeHTTPConnection(mUrl, "POST");
OutputStream os = connection.getOutputStream();
BufferedWriter writer = new BufferedWriter(
new OutputStreamWriter(os, "UTF-8"));
writer.write(params);
writer.flush();
writer.close();
os.close();
int responseCode = connection.getResponseCode();
if (responseCode == HttpsURLConnection.HTTP_OK) {
/* String line;
BufferedReader br=new BufferedReader(new InputStreamReader(connection.getInputStream()));
while ((line=br.readLine()) != null) {
response+=line;
}*/
response = getDataFromInputStream(new InputStreamReader(connection.getInputStream()));
} else {
response = "";
}
} catch (IOException e) {
e.printStackTrace();
}
break;
case 0:
connection = iniitializeHTTPConnection(mUrl, "GET");
try {
if (connection.getResponseCode() == connection.HTTP_OK) {
response = getDataFromInputStream(new InputStreamReader(connection.getInputStream()));
}
} catch (Exception e) {
e.printStackTrace();
response = "";
}
break;
}
return response;
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
if(TextUtils.isEmpty(s) || s.length() == 0){
listener.onFailed(DbConstants.NOT_FOUND, "Data not found", mUrl);
}
else{
Bundle bundle = new Bundle();
bundle.putInt(DbConstants.STATUS_CODE, DbConstants.HTTP_OK);
bundle.putString(DbConstants.RESPONSE, s);
bundle.putString(DbConstants.URL, mUrl);
listener.onSucess(bundle);
}
//System.out.println("Data Obtained = " + s);
}
private HttpURLConnection iniitializeHTTPConnection(String url, String requestType) {
try {
debug("ServerRequest", "url = " + url + "requestType = " + requestType);
URL link = new URL(url);
HttpURLConnection conn = (HttpURLConnection) link.openConnection();
conn.setRequestMethod(requestType);
conn.setDoInput(true);
conn.setDoOutput(true);
return conn;
}
catch(Exception e){
e.printStackTrace();
}
return null;
}
}
private String getDataFromInputStream(InputStreamReader reader){
String line;
String response = "";
try {
BufferedReader br = new BufferedReader(reader);
while ((line = br.readLine()) != null) {
response += line;
debug("ServerRequest", "response length = " + response.length());
}
}
catch (Exception e){
e.printStackTrace();
}
return response;
}
private void debug(String tag, String string) {
Log.d(tag, string);
}
}
そして、郵便でサーバーからデータを取得する必要があるとき、またはこのように取得するときに関数を呼び出すだけです
HashMap<String, String>params = new HashMap<String, String>();
params.put("action", "request_sample");
params.put("name", uname);
params.put("message", umsg);
params.put("email", getEmailofUser());
params.put("type", "bio");
dq.doServerRequest(params, "your_url", DbConstants.METHOD_POST);
dq.setOnServerRequestCompleteListener(new ServerRequestHandler.OnServerRequestComplete() {
@Override
public void onSucess(Bundle bundle) {
debug("data", bundle.getString(DbConstants.RESPONSE));
}
@Override
public void onFailed(int status_code, String mesage, String url) {
debug("sample", mesage);
}
});
これで完了です。お楽しみください!!!問題があればコメントしてください。
今日、この問題に遭遇しましたが、ここに掲載されている解決策はどれもうまくいきませんでした。ただし、投稿されたコード here は[〜#〜] post [〜#〜]リクエストに対して機能しました:
// HTTP POST request
private void sendPost() throws Exception {
String url = "https://selfsolve.Apple.com/wcResults.do";
URL obj = new URL(url);
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();
//add reuqest header
con.setRequestMethod("POST");
con.setRequestProperty("User-Agent", USER_AGENT);
con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
String urlParameters = "sn=C02G8416DRJM&cn=&locale=&caller=&num=12345";
// Send post request
con.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();
int responseCode = con.getResponseCode();
System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Post parameters : " + urlParameters);
System.out.println("Response Code : " + responseCode);
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
//print result
System.out.println(response.toString());
}
問題なのは承認ではないことが判明しました。私の場合、これはエンコードの問題でした。必要なコンテンツタイプはapplication/jsonでしたが、Javaドキュメント:
static String encode(String s, String enc)
Translates a string into application/x-www-form-urlencoded format using a specific encoding scheme.
エンコード関数は、文字列をapplication/x-www-form-urlencodedに変換します。
これで、Content-Typeを設定しないと、415 Unsupported Media Typeエラーが表示される場合があります。 application/jsonまたはapplication/x-www-form-urlencodedではない何かに設定すると、IOExceptionが発生します。これを解決するには、単にencodeメソッドを避けてください。
この特定のシナリオでは、以下が機能するはずです。
String data = "product[title]=" + title +
"&product[content]=" + content +
"&product[price]=" + price.toString() +
"&tags=" + tags;
バッファ付きリーダーを作成するときにコードが壊れる理由として役立つ可能性があるもう1つの小さな情報は、[〜#〜] post [〜#〜]実際には、リクエストはconn.getInputStream()が呼び出されたときにのみ実行されます。
POSTリクエスト。miリクエストがPOSTリクエストであることを指定する必要があります。なぜなら、RESTful Webで作業しているからです。 POSTメソッドのみを使用するサービス。リクエストが投稿されない場合、リクエストを実行しようとするとHTTPエラー405を受け取ります。コードが間違っていないことを確認します。 next:GETリクエストを介して呼び出されるメソッドをWebサービスに作成し、そのWebサービスメソッドを使用するようにアプリケーションをポイントすると、コードが次のようになります。
URL server = null;
URLConnection conexion = null;
BufferedReader reader = null;
server = new URL("http://localhost:8089/myApp/resources/webService");
conexion = server.openConnection();
reader = new BufferedReader(new InputStreamReader(server.openStream()));
System.out.println(reader.readLine());
HTTP認可はGETリクエストとPOSTリクエストの間で差がないため、まず何か他のものが間違っていると思います。Authorizationヘッダーを直接設定する代わりに、Java.net.Authorizationクラスを使用することをお勧めします、しかし、それがあなたの問題を解決するかどうかはわかりません。