본문 바로가기

카테고리 없음

카카오 API 정리 하고 싶은 것들

https://triest.tistory.com/14

 

HttpURLConnection 설정 및 옵션

HttpURLConnection Request Header 설정하는 방법 // HttpURLConnection 객체 생성. HttpURLConnection conn = null; // URL 연결 (웹페이지 URL 연결.) conn = (HttpURLConnection)url.openConnection(); // Time..

triest.tistory.com

https://6developer.com/930

 

JAVA HTTP POST 전송 예제

JAVA HTTP POST 전송 예제 1. 아래 HttpConnectionUtil의 메소드를 이용한다 - 메소드명 : postRequest - 파라미터 : { pURL : 생성할 난수의 길이 ,pList : 파라미터 객체 (HashMap<string,string>) } import jav..</string,string>

6developer.com

https://stackoverflow.com/questions/12732422/adding-header-for-httpurlconnection

 

Adding header for HttpURLConnection

I'm trying to add header for my request using HttpUrlConnection but the method setRequestProperty() doesn't seem working. The server side doesn't receive any request with my header. HttpURLConnect...

stackoverflow.com

https://www.youtube.com/watch?v=gg2sjQ0877U&feature=youtu.be

http://blog.naver.com/PostView.nhn?blogId=wmi1258&logNo=30169933206&parentCategoryNo=7&categoryNo=&viewDate=&isShowPopularPosts=true&from=search

 

HttpUrlConnection Request 설명 및 설정 하기 (header, get, post, body등.)

출처 :http://arabiannight.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%9...

blog.naver.com

https://m.blog.naver.com/PostView.nhn?blogId=wmi1258&logNo=30169933206&proxyReferer=https%3A%2F%2Fwww.google.com%2F

 

HttpUrlConnection Request 설명 및 설정 하기 (header, get, post, body등.)

출처 :http://arabiannight.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%9...

blog.naver.com

https://zoomkoding.github.io/codingtest/java/2019/09/20/REST-JSON.html

 

줌코딩의 코딩일기

Zoom in Coding from the Basic.

zoomkoding.github.io

https://stackoverflow.com/questions/4205980/java-sending-http-parameters-via-post-method-easily?rq=1%20%EC%B6%9C%EC%B2%98:%20https://nine01223.tistory.com/256%20[%EC%8A%A4%ED%94%84%EB%A7%81%EC%97%B0%EA%B5%AC%EC%86%8C(spring-lab)]

 

Java - sending HTTP parameters via POST method easily

I am successfully using this code to send HTTP requests with some parameters via GET method void sendRequest(String request) { // i.e.: request = "http://example.com/index.php?param1=a&pa...

stackoverflow.com

https://zoomkoding.github.io/codingtest/java/2019/09/20/REST-JSON.html

 

줌코딩의 코딩일기

Zoom in Coding from the Basic.

zoomkoding.github.io

https://digitalbourgeois.tistory.com/57

 

[JAVA] HttpURLConnection로 REST API 호출하기

이번 페이지에서는 HttpURLConnection을 이용해 REST API를 호출하는 방법을 알아보자. [GET] public void get(String strUrl) { try { URL url = new URL(strUrl); HttpURLConnection con = (HttpURLConnection)..

digitalbourgeois.tistory.com