access tokenが取得できるように

This commit is contained in:
keita
2022-04-23 04:55:43 +09:00
parent d43e04506b
commit 560fe707a6
75 changed files with 591 additions and 193 deletions
+33
View File
@@ -1,6 +1,9 @@
#include "cocoatweet/util/util.h"
#include <cctype>
#include <iomanip>
#include <vector>
#include <iostream>
namespace CocoaTweet::Util {
std::string urlEncode(const std::string& _str) {
@@ -33,4 +36,34 @@ std::string join(const std::vector<std::string> _vec, const std::string& _delim)
return str;
}
std::unordered_map<std::string, std::string> parse(const std::string str, const char _delim, const char _conn){
int first = 0;
int last = str.find_first_of(_delim);
std::vector<std::string> result;
while (first < str.size()) {
result.push_back(str.substr(first, last - first));
first = last + 1;
last = str.find_first_of(_delim, first);
if (last == std::string::npos) last = str.size();
}
auto mp = std::unordered_map<std::string, std::string>();
for(auto elm: result){
int pos = elm.find_first_of(_conn);
std::cout << pos << std::endl;
if(pos == std::string::npos){
mp.insert_or_assign(elm, "");
}else{
auto key = elm.substr(0, pos);
auto val = elm.substr(pos + 1);
mp.insert_or_assign(key, val);
}
}
return mp;
}
} // namespace CocoaTweet::Util
+2
View File
@@ -4,10 +4,12 @@
#include <vector>
#include <string>
#include <sstream>
#include <unordered_map>
namespace CocoaTweet::Util {
std::string urlEncode(const std::string& _str);
std::string join(const std::vector<std::string> _vec, const std::string& _delim);
std::unordered_map<std::string, std::string> parse(const std::string str, const char _delim, const char _conn);
} // namespace CocoaTweet::Util
#endif