hmacsha1をurlエンコードする箇所を変更

This commit is contained in:
keita
2021-02-17 14:04:22 +09:00
parent 8c5ec96695
commit 9d597fdcb7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ std::map<std::string, std::string> OAuth1::signature(
std::cout << "hmac-sha1 : " << k64Sha1 << std::endl;
auto ret = std::map<std::string, std::string>{
{"oauth_signature", CocoaTweet::Util::urlEncode(k64Sha1)}};
{"oauth_signature", k64Sha1}};
return ret;
}