本文整理汇总了Python中pusher.Pusher.authenticate方法的典型用法代码示例。如果您正苦于以下问题:Python Pusher.authenticate方法的具体用法?Python Pusher.authenticate怎么用?Python Pusher.authenticate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pusher.Pusher
的用法示例。
在下文中一共展示了Pusher.authenticate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pusher_auth
# 需要导入模块: from pusher import Pusher [as 别名]
# 或者: from pusher.Pusher import authenticate [as 别名]
def pusher_auth(request):
profile = ModelFactory.profile_from_request(request)
log.debug('Pusher Auth called.')
if request.method != 'POST':
raise Http404('Unexpected method type for Pusher access.')
p = Pusher(
app_id=os.environ['PUSHER_APP_ID'],
key=os.environ['PUSHER_APP_KEY'],
secret=os.environ['PUSHER_APP_SECRET'],
ssl=True,
port=443
)
channel_name = request.POST.get('channel_name')
socket_id = request.POST.get('socket_id')
log.debug('Pusher Auth Channel_Name: {}'.format(channel_name))
log.debug('Pusher Auth Socket ID: {}'.format(socket_id))
data = {
'user_id': str(profile.uuid),
'user_info': {
'name': profile.get_full_name(),
'avatar_cropped_url': profile.avatar_cropped.url
}
}
auth = p.authenticate(channel=channel_name, socket_id=socket_id, custom_data=data)
return JsonResponse(auth)