Skip to main content

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

NameTypeRequiredDescription
LangCodestringyesLanguage code for which the emoji keywords will be suggested

Returns

*EmojiURL

References