Questions tagged [message]

For questions regarding Facebook messages, JavaScript messages, mobile messages (Android, iOS, windows-phone), etc. Not for use for error messages. Include additional tags to indicate messaging platform, programming language, etc.

Questions about sending and receiving messages of any kind. As this tag is vague, use a more specific tag instead if possible. For example, most questions about Facebook messages should have the tag for the programming language, , and possibly a tag for the API or framework you're using. If your question is about a , an , a window, a , an , … then use the appropriate tag instead. Do not use this tag (or any tag) to indicate that you tried something and got an error message.

4541 questions
1
vote
1 answer

When checking invites is the following

If I create a new express invitation to the server when the bot is turned on, an error occurs. In other cases, it works const invites = {}; const wait = require('util').promisify(setTimeout); client.on('ready', () => { wait(1000); …
LousyFox
  • 13
  • 3
1
vote
2 answers

I want to make my gsuit non admin account into noreply account

I am gsuit user, I have created many user accounts from my admin account of gsuit, i want to make one of the user account as a no-reply account, i.e. when someone sends reply on that account it should automatically get rejected with reject message.
Tushar Kale
  • 159
  • 1
  • 12
1
vote
1 answer

Using a Discord bot, how do I get a string of an embed message from another bot

I am creating a Discord bot that needs to check all messages to see if a certain string is in an embed message created by any other Discord bot. I know I can use message.content to get a string of the message a user has sent but how can I do…
Brandalf
  • 476
  • 1
  • 6
  • 20
1
vote
1 answer

Grails default error message text field name override?

In Grails we have default messages - this is great except where my field name is not what I would like. For example I have a property name such as propertyName and the message comes out: "propertyName is required" What I would like is "property…
Claude
  • 11
  • 2
1
vote
1 answer

Syntax Error for "ON UPDATE CASCADE ON DELETE CASCADE"

Sorry for asking such a dumb question but I am trying to make two tables: parent and child. The parent has multiple other children as well, and all of them seem to have this error. Can anyone please tell me why its saying that? I am using Sql. I…
Freed
  • 25
  • 5
1
vote
1 answer

Trying to read multiple lines from txt file separated with :, but I'm getting imbRecoverableException caught from worker -> parseNext

As I'm new to IBM MQ and IIB I'm trying to experiment around with online tutorials. At the moment I'm trying to make a simple app that reads several lines in txt file separated by colon and writes them into XML file. Currently I'm stuck at reading…
1
vote
1 answer

Get message size in Gmail API

Using Gmail API, I try to find specific e-mails by size. I want to be able to read the message size. In the API site I cannot find such a method. I've seen other methods with .js script, but I'm using google script as below: function…
meleneemil
  • 21
  • 4
1
vote
1 answer

How Do I Authenticate a AWS SNS Message Using C#?

I am sending SNS messages to a HTTP endpoint. I can pick up the message information from the JSON data but how do I authenticate the message and validate the message signature? This is one of the messages: { "Type": "Notification", "MessageId":…
Dec
  • 15
  • 8
1
vote
1 answer

How should messages (not exceptions) be passed from the Model/Business Object layer to the UI?

Using VB.net 4.0 I have a Winforms application that is loosely based on MVVM. I'm looking for an easy way for any layer (even those that the UI has no reference to) to pass messages back to the UI for display to the user. I have accomplished this…
Casey Wilkins
  • 2,555
  • 2
  • 23
  • 31
1
vote
1 answer

how to display message bag object in laravel blade template?

I want to display my errors in Laravel blade template. How should i go about it? return view('edit', [ "id" => $request->id, "data" => $data, "errors" => $validator->messages(), "success" => null, ]); Expected output…
Rhugveda Desai
  • 74
  • 2
  • 11
1
vote
1 answer

Blackberry Notification Message Issue

I am trying to make a notification message appear when I click the menu item, it shows me the indicator but I don't see the message, can someone explain where i did wrong : private MenuItem AMenu = new MenuItem("Notify", 101, 10) { …
BurunduK
  • 293
  • 1
  • 3
  • 17
1
vote
2 answers

SWIFT MT message validation

I am looking for java library or a vb addin that can be used for - SWIFT message syntax validation - Building SWIFT message from available data. - Retrieving the required tag/field data. Can anybody help me in this regard?? I have seen few of…
Pavan
1
vote
1 answer

First time setup webhook. How to subscribe to `message` in the webhook setting?

I would like to have a log chat on my own server by collecting them from the chat history between user and my Facebook page. I found the document mention about message Next after I can verify my token using ngrok get my server connected with…
joe
  • 8,383
  • 13
  • 61
  • 109
1
vote
3 answers

how to write text into Gmail Message Body by other browser

I would like to do the following: Open a web page → login gmail → compose mail Open other web page → Select a bookmark, open a java webapp(worked in tomcat) The webapp will copy some text into the above Gmail's Message Body ●if the two pages are…
user482814
  • 11
  • 3
1
vote
1 answer

How does the MessageQueue know how long to block if there is no message in it?

As I understand it, if there are only messages with a timestamp for the future in a MessageQueue, the MessageQueue blocks the Looper's loop until that time arrived. But this mechanism also works if the MessageQueue is completely empty and waiting…