Kakao Rest API for Rust.
- Get Rest API KEY from Kakao Developer
- Set Dependency in cargo.toml
[dependencies]
kakao = { git = "https://github.com/rabyss/rust-kakao.git" }
let api_key = "your kakao rest api key";
let client = KakaoLocal::new(&KakaoCred::new(&api_key));
let output = client.search_address(&LocalSearchAddressInput {
query: "전북 삼성동 100".to_string(),
..Default::default()
})?;
refer src/services/{service_name}/tests.rs for more examples.
- UserManagement
- KakaoTalk
- KakaoPay
- KakaoStory
- PushNotification
- Search
- Local
- Vision
- Translation
- Speech
If you test library, you must set .env file.
KAKAO_REST_API_KEY=your kakao rest api key
MIT