Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:49
Show Gist options
  • Save nishinoshake/79b8cf3897a0ac2ce445 to your computer and use it in GitHub Desktop.
Save nishinoshake/79b8cf3897a0ac2ce445 to your computer and use it in GitHub Desktop.
PHPからSlackにメッセージ
<?php
$slackApiKey = 'wowowowowowowowowowowowowoow';
$text = 'API TEST!';
$text = urlencode($text);
$url = "https://slack.com/api/chat.postMessage?token=${slackApiKey}&channel=%23api&text=${text}&as_user=true";
file_get_contents($url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment