Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/celerium/send-woof
Sends a dog image & fact to a Teams channel.
https://github.com/celerium/send-woof
api powershell teams
Last synced: about 1 month ago
JSON representation
Sends a dog image & fact to a Teams channel.
- Host: GitHub
- URL: https://github.com/celerium/send-woof
- Owner: Celerium
- License: mit
- Created: 2022-06-22T00:09:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T00:53:16.000Z (over 2 years ago)
- Last Synced: 2023-03-05T11:33:30.969Z (almost 2 years ago)
- Topics: api, powershell, teams
- Language: PowerShell
- Homepage:
- Size: 536 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Send-Woof
The Send-Woof script sends a dog image & fact to a Teams channel using a Teams webhook connector URI.
- Various filters are in place to try and prevent any inappropriate images from being sent.
An image is randomly selected from a random dog subreddit. Dog facts are pulled from the dog-facts-api.herokuapp.com API
---
## Send-Woof
![Send-Woof](https://raw.githubusercontent.com/Celerium/Send-Woof/main/.github/Celerium-Send-Woof-Example001.png)
## Initial Setup & Running
1. Teams Channel > Connectors > Incoming Webhook
2. Give the Webhook a name & logo
- Create the Webhook
4. Copy the URI
- The URI is how you tell the script what teams channel to send posts to.---
```posh
.\Send-Woof.ps1 -TeamsURI 'https://outlook.office.com/webhook/123/123/123/.....'
```Using the defined webhooks connector URI a random dad joke is sent to the webhooks Teams channel.
No output is displayed to the console.
Using the -Verbose option will give you a basic display output## Help :blue_book:
- Help info and a list of parameters can be found by running `Get-Help .\Send-Woof.ps1`, such as:
```posh
Get-Help .\Send-Woof.ps1
Get-Help .\Send-Woof.ps1 -Full
```---