Example #1
0
func main() {
	client, err := steam.NewClient(apikey)
	if err != nil {
		fmt.Printf("Error: %v", err)
	}
	GetGlobalAchievementPercentagesForApp(client)
}
Example #2
0
func main() {
	client, err := steam.NewClient(APIKEY)
	if err != nil {
		fmt.Printf("Error = %v", err)
	}

}
Example #3
0
func main() {
	client, err := steam.NewClient(apikey)
	if err != nil {
		fmt.Printf("Error: %v", err)
	}

}
Example #4
0
func main() {
	client, err := steam.NewClient(apikey)
	if err != nil {
		fmt.Printf("Error: %v", err)
	}
	GetPlayerSummaries(client)
	//GetFriendList(client)
	//GetPlayerBans(client)
	//ResolveVanityUrl(client)
	//GetUserGroupList(client)
}
Example #5
0
func main() {
	client, err := steam.NewClient(apikey)
	if err != nil {
		fmt.Printf("Error: %v", err)
	}

	GetMatchHistory(client)
	//GetMatchHistoryBySeqNum(client)
	//GetMatchDetails(client)
	//GetHeroes(client)
	//GetLeagueListing(client)
	//GetLiveLeagueGames(client)
	//GetTeamInfoByTeamID(client)
}