메세지 전송시 오류 {"errorCode":"SignatureDoesNotMatch","errorMessage":"생성한 signature를 확인하세요."} Code : 302 #104
Unanswered
921126
asked this question in
SOLAPI Q&A
Replies: 1 comment
-
|
안녕하세요 회원님, 솔라피 기술지원팀입니다. Java SDK 예제를 참고하셔서 해당 SDK 예제와 완전히 동일한 환경으로 구성하셨을 때에도 오류가 발생하실지 확인 부탁드리겠습니다. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
기존에 회사에서 아래와같은 코드로 사용하고있었는데
갑자기 에러메세지가 출력됩니다.
별도 사용하는 프레임워크는 없고 java/jsp로 만들어진 코드입니다.
System.setProperty("https.protocols", "TLSv1.2");
Message coolsms = new Message(mApiKey, mApiSecret);
HashMap<String, String> params = new HashMap<>();
params.put("to", mToNo); // 수신번호
params.put("from", SMS_originAddress); // 발신번호
params.put("type", mSendType); // Message type ( SMS, LMS, MMS, ATA, CTA )
params.put("text", mContent); // 문자내용
params.put("app_version", "JAVA SDK v1.2"); // application name and version
//params.put("mode", "test");
Beta Was this translation helpful? Give feedback.
All reactions