Skip to content

Files

Latest commit

 

History

History
141 lines (88 loc) · 3.42 KB

PublicApi.md

File metadata and controls

141 lines (88 loc) · 3.42 KB

\PublicApi

All URIs are relative to https://q.trap.jp/api/v3

Method HTTP request Description
GetPublicUserIcon Get /public/icon/{username} ユーザーのアイコン画像を取得
GetServerVersion Get /version バージョンを取得

GetPublicUserIcon

*os.File GetPublicUserIcon(ctx, username).Execute()

ユーザーのアイコン画像を取得

Example

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)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
username string ユーザー名

Other Parameters

Other parameters are passed through a pointer to a apiGetPublicUserIconRequest struct via the builder pattern

Name Type Description Notes

Return type

*os.File

Authorization

OAuth2, bearerAuth

HTTP request headers

  • 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]

GetServerVersion

Version GetServerVersion(ctx).Execute()

バージョンを取得

Example

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)
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiGetServerVersionRequest struct via the builder pattern

Return type

Version

Authorization

OAuth2, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]