adamkaz
9 years agoChannel Surfer
GetChannelCred
I was wondering if anyone has been able to get GetChannelCred working as intended. It looks like it would be a pretty slick way to authenticate users. Its a bit hard to debug, since I'm guessing that it only works for channels in the store (private or public). Even so, when I've played around with it, I seem to always get an empty json object back.
Here is what I'm trying:
When I POST this to my server, pucid == "none"
Here is what I'm trying:
store = CreateObject("roChannelStore")
channelcredjson = store.GetChannelCred().json
pucid = "none"
if channelcredjson <> invalid and channelcredjson <> ""
channelcredobj = ParseJSON(channelcredjson)
if channelcredobj<>invalid and channelcredobj.roku_pucid<>invalid
pucid = channelcredobj.roku_pucid
end if
end if
When I POST this to my server, pucid == "none"