Resource icon

Shutdown Plugin 0.1.2

quasi51

New Member
I think this issue and it's comment addressed the same issue. Could you have a look at this?
Thanks, that solved it. For anyone trying to use this plugin with the Multi OBS Controller, this was how I got it working. Create a "Raw WS Request" and populate the fields with the following or something similar:

Request Type:

Code:
CallVendorRequest

RequestData:

Code:
{
  "vendorName": "obs-shutdown-plugin",
  "requestType": "shutdown",
  "requestData": {
    "reason": "asdfasdf asdfa",
    "support_url": "https://github.com/norihiro/obs-shutdown-plugin/issues"
  }
}
 

salt86

New Member
Got it. tawmae on the streamer.bot discord helped me format things correctly. I was able to send a raw OBS JSON

Here's what it looks like
Code:
{
  "requestType": "CallVendorRequest",
  "requestData": {
    "vendorName": "obs-shutdown-plugin",
    "requestType": "shutdown",
    "requestData": {
      "reason": "requested by streamer.bot",
      "support_url": 'https://github.com/norihiro/obs-shutdown-plugin/issues',
      "force": true
    }
  }
}
 

norihiro

Member
Got it. tawmae on the streamer.bot discord helped me format things correctly. I was able to send a raw OBS JSON

Here's what it looks like
Code:
{
  "requestType": "CallVendorRequest",
  "requestData": {
    "vendorName": "obs-shutdown-plugin",
    "requestType": "shutdown",
    "requestData": {
      "reason": "requested by streamer.bot",
      "support_url": 'https://github.com/norihiro/obs-shutdown-plugin/issues',
      "force": true
    }
  }
}
Please do not set https://github.com/norihiro/obs-shutdown-plugin/issues to support_url but set a URL to streamer.bot.
 
Top