Questions tagged [rtm]

Real Time Messaging API in Slack. Don't use for RTM versions of something. For Restricted Transaction Memory, use intel-tsx tag instead.

RTM means Real Time Messaging API in Slack.

It could also mean Release To Manufacturing (or Ready To Market) product state. In this case only appropriate product tag should be used, e.g. just , not and .

For Restricted Transaction Memory please use , which covers both Hardware Lock Elision and Restricted Transaction Memory.

33 questions
23
votes
4 answers

How to get claim inside Asp.Net Core Razor View

I did it in my rc1 project like: User.Claims.ElementAt(#).Value But after I switched to rtm it wouldn’t work anymore. When I debug the Razor view the object looks the same but User.Claims is just empty. Any idea what the reason could be.
Sknecht
  • 984
  • 2
  • 11
  • 31
14
votes
3 answers

Will visual studio 2015 projects and solutions be backward compatible with 2013?

Now that Visual Studio 2015 RC is out, has anyone installed it and opened Visual Studio 2013 projects/solutions? Does it ask the files to be changed? If yes, are the changes it makes backward compatible?
5
votes
2 answers

What is the current version of final Microsoft Visual Studio 2013?

Does anyone know what is the current version of final Microsoft Visual Studio 2013 (the one that was released for sale)?
Heron
  • 329
  • 2
  • 5
  • 15
4
votes
2 answers

Namespace reference in .NET MVC3 Razor view in VB?

How do I reference a Namespace in .NET MVC3 with the Razor view engine? I understand this can be done in C#: @using Namespace; However in VB this doesn't seem to work: @Imports Namespace (i'm talking about inside a .vbhtml file)
Ropstah
  • 17,538
  • 24
  • 120
  • 194
4
votes
1 answer

Where could I get the rtm controller templates for asp.net identity?

I know it's not open source (yet) but anybody know how to make the latest rtm packages work or perhaps a controller template that I can use to try it out? It seems that it has changed significantly from the RC version.
knotans
  • 41
  • 2
3
votes
3 answers

Posting message with Slack RTM api

I'm following the tutorial here https://slackapi.github.io/node-slack-sdk/bots#posting-a-message and I'm flummoxed why I can't get this portion of the tutorial code to work. I copied and pasted the code from this section, which is below var…
Gwater17
  • 2,018
  • 2
  • 19
  • 38
3
votes
1 answer

how to get the im_marked event on slack API

I am developing a bot with the slack RTM API. I want to catch im_marked events. My problem is that the RTM API does not receive any event when a user checks his private channel with the bot, with unread messages. I already tried with two different…
William Pollet
  • 191
  • 1
  • 10
3
votes
1 answer

Can I upgrade from Visual Studio 2012 (11) RC to Final / RTM?

I have noticed that there are a lot of improvements in Visual Studio 11 when it comes to the designer, and I really want to switch to 2012 as fast as possible. The question is - if I download the Release Candidate now, can I then just "reinstall" or…
Ted
  • 19,727
  • 35
  • 96
  • 154
2
votes
1 answer

Slack bot that responds to all public messages?

I am creating a Slack app that listens for a type of message (ie. one that starts with the word "bot") from a user in any public channel, and responds to that with an action. I can manage all of this using the Events API, but the delay on each…
cbwi
  • 33
  • 1
  • 6
2
votes
1 answer

How do I connect a new style bot to the RTM API (Python)

Recently Slack has added the ability for bots to do many more things than they could do before. This is great!. Over the years, I have been able to connect many classic style bots to the RTM API with out any issues. Yesterday I tried to create and…
Andenthal
  • 849
  • 5
  • 13
2
votes
4 answers

Is F# RC equal to RTM?

I am wondering if F# RC equal to RTM? If not is there any doc mentioning about that? Thanks in advance.
user317238
  • 23
  • 2
1
vote
0 answers

Slack API: rtm.start works but rtm.connect doesn't in slack_sdk.rtm_v2

TL;DR: Trying to make a Slack bot in Python using slack_sdk.rtm_v2. rtm.start works but rtm.connect doesn't, even though they are presented as doing pretty much the same thing except for the amount of info returned. Why? I'm trying to make a Slack…
optical
  • 161
  • 7
1
vote
1 answer

How do I deal with the Agora exception "e/agora sdk cannot open log file for writing agorartm.log err=30"?

I use Agora as my RTM(Real Time Messaging) SDK, but after I set it up for Android develop, everything worked fine except for the problem that the RTMClientListener did not automatically update the messages received, and the debug console shows…
Python Test
  • 95
  • 1
  • 5
1
vote
1 answer

raise SlackLoginError(reply=reply) slackclient.server.SlackLoginError

Running the below small script passing OAuth Access Token as a token here : from slackclient import SlackClient import os token = "*********" sc = SlackClient(token) print (sc.api_call("api.test")) if sc.rtm_connect(): print("Starter Bot…
1
vote
0 answers

Forwarding unique URL for email in Gmail

I want to forward emails from Gmail to Remember The Milk to turn them into tasks. I would like to include a link/URL pointing back to the original email so that I can easily go from Remember The Milk back to the original message. I could manually…
Josh
  • 1,210
  • 12
  • 30
1
2 3