KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
foursquarego
★ 21
Open GitHub ↗
Foursquare API client written in golang
Download README (.md)
Explore Similar Repositories
Least
:
Least amount of effort to add multiple views in a recyclerview
dev-hodor
:
/dev/hodor
YBImgPicker
:
使用ALASSET框架读取图片信息。支持多图选择,代理回调。调用简单
Morse_Encoding_Decoding
:
This project allows you to encode and decode Morse code using your device's flashlight and camera. For decoding was used augmented reality library OpenCV 2
weather-android
:
Example how to use dagger2
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
foursquarego
?
Download (.md)
# Foursquarego [](https://dev.azure.com/peppage/peppage/_build/latest?definitionId=1&branchName=master) [](https://godoc.org/github.com/peppage/foursquarego) [](https://goreportcard.com/report/github.com/peppage/foursquarego)  Foursquarego is a simple Go package for accessing the[Foursquare API](https://developer.foursquare.com/docs/). If you find any errors please create an issue, the foursquare API has different types even for things with the same name. ## Install go get -u github.com/peppage/foursquarego ## Usage ```go httpClient := http.DefaultClient // When creating the client you can specify either clientSecret or the accesstoken client := foursquarego.NewClient(httpClient, "foursquare", "clientId", "clientSecret", "") // Get venue details venue, resp, err := client.Venues.Details("57d1efb5498e018d15de8ba3") // Search Venues venues, resp, err := client.Venues.Search(&VenueSearchParams{ LatLong: "40.7,-74", Query: "singlecut", }) ``` ## License [MIT License](LICENSE.md)