Skip to content

rabyss/rust-kakao

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Kakao

Kakao Rest API for Rust.

Getting Started

  1. Get Rest API KEY from Kakao Developer
  2. Set Dependency in cargo.toml
[dependencies]
kakao = { git = "https://github.com/rabyss/rust-kakao.git" }

Usage

    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.

API coverages

Note

If you test library, you must set .env file.

KAKAO_REST_API_KEY=your kakao rest api key

License

MIT

Releases

No releases published

Packages

No packages published

Languages