Worked for me, thanks so much! I'm using this to send notifications to my phone (slack app), the possibilities are endless, from custom weather alerts to investment/trading notifications
We use Service Now and Slack at my company. Is it possible to create slack commands to pull the basic information from a Service Now ticket into a slack channel? Example: If I created /getTicket and it would then go out to the Service Now ticket and pull into the channel the ticket title, description, priority color, created date, etc etc.
Hi Thank you for the video I kinda want to do the same app you mentioned at first that monitor a system and sends crash rates. Any idea how can I do that?
amazing its very helpful for me thanks a lot.. can u tell me how can I send a post message from logged in user ID?? In this case its sending from our app name..
Hi, thanks for the video. I've created a slack app that posts open SNOW tickets, i want to add the functionality which shows the live status of the ticket . Like when the message is posted, the ticket is in "open" state and when someone resolves it later , i want it to get updated to "Resolved". I saw this feature in PagerDuty slack app. Please help
q1.I fixed the correct code but not pops-up in slack message automatically ,cos of my Terminal is not Responding as OK! and its why? q2. i'm using python for slack messages and slack app should be integrated with Make i.e., integromat to trigger automation workflows/scenarios from OBS, Can I Use Python to Connect OBS Studio With Any App Using Integromat / Zapier ?
Hello! Apparently it is possible to "impersonate" a user: api.slack.com/messaging/sending#impersonation See the "sending message as other entities" section
Hi Usman! You could use most of the same script but with some modifications. Specifically, you'll want to utilize the following Slack API endpoint to upload a file (Documentation here): api.slack.com/methods/files.upload
Hello! Be sure to check that you're entering an argument at the command line and that the argument provided with the "-m" option is given in quotes. After grabbing the argument from the command line, you may want to print it out just to validate that you've saved it to a variable correctly. Also, if you use the "Play" button in pycharm to run the script, it won't run it with any options or arguments, so you would get a null value for your argument. Not sure if you're running it via the terminal or via the play button but I would also check that. If you confirm that you've done this and it's still not working, you could share your code here and the command you're using to run it and I can take a look!
Hi! I believe what you're looking for is this: api.slack.com/authentication/basics This documentation outlines how to create an app that will respond to users who invoke the bot-user commands. The legacy version of this documentation was here api.slack.com/bot-users, which discusses the process of creating a "bot-user" which is now replaced by the first link that I shared
Although I don't have the python code, I believe the formatting you're looking for is documented on this page! api.slack.com/reference/surfaces/formatting#mentioning-users
Your tutorials are awesome, thank you! It's great that they're super clear and concise.
Thanks a lot for the feedback! I'm glad to hear they're helpful.
This is the best, clearest, easiest-to-follow Video in the Universe! Thank you.
I'm glad to hear that. Thanks!
You are amazing bro! This helped me so much at work. I didn't have any idea how to start. Thank you
Thank you! I really appreciate that.
Worked for me, thanks so much! I'm using this to send notifications to my phone (slack app), the possibilities are endless, from custom weather alerts to investment/trading notifications
Works like a charm! After I cleaned up a few typos...ugghh. Thanks for the great tutorial!
I'm glad it was helfpul!
This video just saved me SO MUCH TIME! Thanks!
Excellent video to teach quick start to using slack api and alert app creation
I am getting "Invalid_payload" using similar code? any ideas? using python 3.9.5.
Thank you so much! Very clear and easy to follow. Got it working the first try
Amazing tutorial! my G!. Got me through an interview! :)
That's awesome! I'm very glad that it helped.
We use Service Now and Slack at my company. Is it possible to create slack commands to pull the basic information from a Service Now ticket into a slack channel? Example: If I created /getTicket and it would then go out to the Service Now ticket and pull into the channel the ticket title, description, priority color, created date, etc etc.
Thank you for the tutorial, great work.
thanks man! This tutorial helped so much !!
How do you send messages to an individual slack instead of a slack channel using the bash command line?
This is a great tutorial, thank you for sharing it:)
Very good video.. I was looking at this today, as I am looking at firing the script from within an AWS lambda to get to an external slack channel..
Thanks for the video and ideas at the start.
hi, how about vise versa where I want to receive post from specific channel to my web app or website? Is it possible?
This was helpful. Thank you.
Hi Thank you for the video I kinda want to do the same app you mentioned at first that monitor a system and sends crash rates. Any idea how can I do that?
Wonderfull explanation. Thank you so much
No problem!
do you have video on how to get messages of a slack channel
amazing its very helpful for me thanks a lot.. can u tell me how can I send a post message from logged in user ID??
In this case its sending from our app name..
Subbed - super helpful, thanks!
How to implement a command in xsoar to find the current status (offline/online) of slack user
can we send response to the incoming msg? one more qn: your script didnt cover on authentication? does free version of slack allow this?
Can we mention/tag someone in a slack channel using the python script?
great video, thanks a lot!
Hi, thanks for the video. I've created a slack app that posts open SNOW tickets, i want to add the functionality which shows the live status of the ticket . Like when the message is posted, the ticket is in "open" state and when someone resolves it later , i want it to get updated to "Resolved". I saw this feature in PagerDuty slack app. Please help
thank you. It was a good video , helps me a lot.
Hey can we send multiples files (let say three images)via slack bot using python script.If yes please make a video on it ...thanks in advance
q1.I fixed the correct code but not pops-up in slack message automatically ,cos of my Terminal is not Responding as OK! and its why?
q2. i'm using python for slack messages and slack app should be integrated with Make i.e., integromat to trigger automation workflows/scenarios from OBS, Can I Use Python to Connect OBS Studio With Any App Using Integromat / Zapier ?
how can i logout another team member or delete his account as a sso/admin, may be when he had left the organisation. Means how to automate this thing
How can I send file/attachments with messages?
Hey, any way to also send images ? I saw ways to send urls but can I directly send a file ?
Hi Javier! Yes, it is possible to send files via the API. Here is some documentation for uploading a file: api.slack.com/methods/files.upload/code
Thanks for this!
Good Video and thanks - but the code could have been to the point. adding argument passing from command line made the otherwise simple code complex
How to fetch status of an user from slack sdk?? Can anyone tell
Make a video showing how to delete a particular message sent with the API
Great video! Could you show us how to do this with Google Chat instead? That would be amazing!
Thanks for the suggestion! I'll consider doing this for a future video. I'd have to research the Google Chat API.
how the use whit php in the web page
I believe that Webhooks are outdated and Slack can discontinue it anytime. Any video on consuming Slack's REST API?
Thanks this helped me
How to send content of file using webhook over slack?
In my most recent video I cover this topic but using Golang instead of python
Hi, how can I recover the past messages at slack?
Hello! I apologize I'm not entirely sure how to do this. I believe it depends on the plan that you have with slack though.
Hi can I my account do the auto reply instead of bot?
Hello! Apparently it is possible to "impersonate" a user: api.slack.com/messaging/sending#impersonation
See the "sending message as other entities" section
hello ! can we post file with same script ?
Hi Usman! You could use most of the same script but with some modifications. Specifically, you'll want to utilize the following Slack API endpoint to upload a file (Documentation here): api.slack.com/methods/files.upload
@@tech_with_moss Thank You
hello, i am getting invalid payload in pycharm when i run it. plz help
Hello! Be sure to check that you're entering an argument at the command line and that the argument provided with the "-m" option is given in quotes. After grabbing the argument from the command line, you may want to print it out just to validate that you've saved it to a variable correctly. Also, if you use the "Play" button in pycharm to run the script, it won't run it with any options or arguments, so you would get a null value for your argument. Not sure if you're running it via the terminal or via the play button but I would also check that. If you confirm that you've done this and it's still not working, you could share your code here and the command you're using to run it and I can take a look!
@@tech_with_moss oh wow man, you are really engaged with the audiance.
@@ganeshdeshmukh8020 thank you! I try to be as much as time permits.
hello, how to get slack messages using python? like a chatbot.
Hi! I believe what you're looking for is this: api.slack.com/authentication/basics
This documentation outlines how to create an app that will respond to users who invoke the bot-user commands. The legacy version of this documentation was here api.slack.com/bot-users, which discusses the process of creating a "bot-user" which is now replaced by the first link that I shared
Thanks! :D
How to mention a user using python in a slack channel?
Although I don't have the python code, I believe the formatting you're looking for is documented on this page!
api.slack.com/reference/surfaces/formatting#mentioning-users
@@tech_with_moss thanks:)
Save my day
Send in a blank message. I would show help on a blank message and exit. But that's just me.
I agree, I definitely think that would be a good improvement to the program. No use in sending a blank message.
GRACIAS!!!!!!!!!!!!!