Quote: "Can I integrate stuff like Pubnub into either Tier 1 (preferably)"
Hi Xaron, welcome to the forum.
Here is the Pubnub Hello world example using HTTPRequestASync in Tier1.
// show all errors
SetErrorMode(2)
// set window properties
SetWindowTitle( "Pubnub" )
SetWindowSize( 1024, 768, 0 )
http = CreateHTTPConnection()
SetHTTPHost( http, "pubsub.pubnub.com", 0)
// if the server takes a long time to respond this could make the app unresponsive
post$ = chr(34)+ "Hello%20%World" +chr(34)
SendHTTPRequestASync( http, "publish/demo/demo/0/hello_world/0/", post$)
while GetHTTPResponseReady(http) = 0
Print( "Connecting..." )
Sync()
endwhile
response$ = GetHTTPResponse(http)
Running Windows 7 Home, 64 bit, 8 GB ram, Athlon II X2 255, ATI Radeon HD 4200. Using AGK2 Tier 1.