messages.getEmojiURL
Returns an HTTP URL which can be used to automatically log in into translation platform and suggest new emoji keywords ». The URL will be valid for 30 seconds after generation.
func (c *Client) MessagesGetEmojiURL(ctx context.Context, langcode string) (*EmojiURL, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.MessagesGetEmojiURL(ctx, langcode)
if err != nil {
return err
}
_ = res // *EmojiURL
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
LangCode | string | yes | Language code for which the emoji keywords will be suggested |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
messages.getEmojiURL#d5b10c26