All URIs are relative to https://q.trap.jp/api/v3
Method | HTTP request | Description |
---|---|---|
GetPublicUserIcon | Get /public/icon/{username} | ユーザーのアイコン画像を取得 |
GetServerVersion | Get /version | バージョンを取得 |
*os.File GetPublicUserIcon(ctx, username).Execute()
ユーザーのアイコン画像を取得
package main
import (
"context"
"fmt"
"os"
traq "github.com/traPtitech/go-traq"
)
func main() {
username := "username_example" // string | ユーザー名
configuration := traq.NewConfiguration()
apiClient := traq.NewAPIClient(configuration)
resp, r, err := apiClient.PublicApi.GetPublicUserIcon(context.Background(), username).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PublicApi.GetPublicUserIcon``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetPublicUserIcon`: *os.File
fmt.Fprintf(os.Stdout, "Response from `PublicApi.GetPublicUserIcon`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
username | string | ユーザー名 |
Other parameters are passed through a pointer to a apiGetPublicUserIconRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: image/jpeg, image/gif, image/png
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Version GetServerVersion(ctx).Execute()
バージョンを取得
package main
import (
"context"
"fmt"
"os"
traq "github.com/traPtitech/go-traq"
)
func main() {
configuration := traq.NewConfiguration()
apiClient := traq.NewAPIClient(configuration)
resp, r, err := apiClient.PublicApi.GetServerVersion(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PublicApi.GetServerVersion``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetServerVersion`: Version
fmt.Fprintf(os.Stdout, "Response from `PublicApi.GetServerVersion`: %v\n", resp)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiGetServerVersionRequest struct via the builder pattern
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]