Questions tagged [private-messaging]

66 questions
2
votes
2 answers

PHP/MYSQL - showing newest distinct value from multiple columns

This is my mysql table structure: msgid | senderid | sender | recipientid | recipient | title | message | date I'm looking to present in inbox for my private messaging system as Facebook have done. That is, each conversation is output ONE TIME…
Daniel
  • 433
  • 1
  • 3
  • 18
2
votes
1 answer

How can one use Django Postman to set up a back end messaging system like Facebook?

I've done research on Django Postman and it seems to be the most solid private user to user messaging platform out there. I've looked at the Django Postman documentation but it's very template orientated. For developers who use Django as a back end…
deadlock
  • 7,048
  • 14
  • 67
  • 115
1
vote
1 answer

Is there a product that provides private messaging ala Facebook Messages/Twitter DMs?

My web app needs a private messaging system just like Facebook Messages or Twitter DM. I found a bunch of stuff that does real-time instant messaging, but they don't store the messages like a typical PM system does. Plenty of sites/apps has a PM…
thatmarvin
  • 2,800
  • 4
  • 22
  • 31
1
vote
0 answers

LEFT SELF JOIN in Rails - Thread Based Private Messaging

I am trying to implement one to one thread based private messaging in Rails. Following is my Message model: Table name: messages id :integer not null, primary key sender_id :integer recipient_id …
1
vote
1 answer

Is it possible to check if user have PM's enabled?

I'd like to know if there is a way to check if a User have Private Messages Enabled. This Feature is for an Support Bot. Currently I use the GuildMessageRecievedEvent and send a Private Message to the User.
Redi
  • 308
  • 1
  • 4
  • 16
1
vote
1 answer

Bot asks user what role they wish to join, bot adds them to role based on the reply

I am slowly learning javascript in my spare time and I haven't quite gotten to this yet. But a friend asked me to make a simple bot, one that private messages every new user that joins the server, asks them which color they would like their username…
Zarvix
  • 119
  • 4
  • 17
1
vote
1 answer

Private message commands in discord

I am making an RP profile creation setup for a discord bot using javascript. I have the conversation starting in a channel and moving to private messaging with the bot. The first question gets asked and the reply from the user is stored in a…
Zarvix
  • 119
  • 4
  • 17
1
vote
2 answers

Does anybody know a gem/plugin for private messages in Rails3?

Does anybody know of a gem or plugin for Rails3 that allows for sending Private Messages between users of a site? I'm using Devise for my authentication. I've stumbled upon simple-private-messages, which is one possibility, but that's about it…
Yuval Karmi
  • 26,277
  • 39
  • 124
  • 175
1
vote
0 answers

Facebook APP is blocked from sending messages

We use SAP CRM Interaction Center to answer Facebook posts/messages to our company page. We created a Facebook APP to manage our pages using Facebook API and Page_Access_Token. Scenario: Facebook User sends private message to one of our company…
1
vote
2 answers

How can I modify django-postman to allow sending of attachments?

It doesn't seem as if django-postman supports attachments so I'm trying to add attachment support. I'm thinking of doing it by creating another set of models that will refer to a postman message and then update the views/templates accordingly but it…
Dan Goldin
  • 957
  • 13
  • 32
1
vote
2 answers

MySql SELECT only newest message from distinct threads order by timestamp -Private Messages Inbox Similar to Facebooks(2013)

Trying to recreate a private message system similar to what Facebooks setup these days. The part im having a problem with is SELECT only newest message from distinct threads order by timestamp. Here is the closest query I could come up with so far.…
ChuckKelly
  • 1,742
  • 5
  • 25
  • 54
1
vote
1 answer

Private Message Facebook Page using Facebook iOS SDK?

I'm developing an iOS App and I want to have users log into my App using the Facebook SDK and then privately message a Facebook Page I've created. My App logs into Facebook fine and I can get a user to post onto their own walls, but I want to have…
user1522318
  • 83
  • 1
  • 8
1
vote
2 answers

Graph APi: "(#3) Unknown method" error while trying to reply a private message

I'm using the Facebook Graph API to reply a direct message. I have published my message issuing an HTTP POST request to /CONVERSATION_ID/messages with a valid access token. But I receive the following error: { "error": { "message": "(#3)…
0
votes
1 answer

User Messaging with RoR and Mongoid

i searched the web now several hours but get no clear answer. I have a Rails-App (Ruby 1.9.3/Rails 3.2.2/MongoDB) which uses Devise as User-Authorization. Now i'd like to have a simple messaging function between users: 1 to 1 and 1 to n. Are there…
0
votes
1 answer

PHP / MySQL PM System with multiple recipients table structure?

I'm currently developing a PM system for a website, in which users must be able to send PM's to multiple recipients. Naturally, this means that if a message has been sent to user A, B and C, user C could delete the message while user A and B…
carlo
  • 700
  • 2
  • 9
  • 25