你好,我的同事ColdFusion開發者!How to say來自共享node.js服務器的Hello World
我在學習node.js,並在http://pusher.com/有一個免費的沙箱帳戶。 如果我查看API的訪問,他們給pastable的html代碼:
<!DOCTYPE html>
<head>
<title>Pusher Test</title>
<script src="http://js.pusherapp.com/1.9/pusher.min.js" type="text/javascript"></script>
<script type="text/javascript">
// Enable pusher logging - don't include this in production
Pusher.log = function(message) {
if (window.console && window.console.log) window.console.log(message);
};
// Flash fallback logging - don't include this in production
WEB_SOCKET_DEBUG = true;
var pusher = new Pusher('0xxxx0xxxxxxxxxxxx00');
var channel = pusher.subscribe('test_channel');
channel.bind('my_event', function(data) {
alert(data);
});
</script>
</head>
,我已經貼到這一個網頁。
然後,他們給一些代碼通過捲曲派:
curl -d "hello world" \
"http://api.pusherapp.com/apps/7499/channels/test_channel/events?"\
"name=my_event&"\
"body_md5=xxxxxxxxxxxxxxxxx&"\
"auth_version=1.0&"\
"auth_key=0xxxxxxxxxxxxxxx00&"\
"auth_timestamp=1318305150&"\
"auth_signature=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
,但我不認爲我有捲曲。
問:我可以使用cfhttp嗎?
是的,簡而言之。爲什麼使用CF雖然,認爲你想與節點工作?除非你在Windows上運行節點:$ –
嗯,我仍然試圖讓Hello World工作,所以我確信我做錯了什麼(如使用ColdFusion)。 –