11
私はGoogle App EngineのPythonを使用しています。ユーザーがどのブラウザを使用しているかを知りたいGoogle App EngineのPythonのUser-Agent
私はGoogle App EngineのPythonを使用しています。ユーザーがどのブラウザを使用しているかを知りたいGoogle App EngineのPythonのUser-Agent
class BaseRequestHandler(webapp.RequestHandler):
def browser(self):
return str(self.request.headers['User-Agent'])
あなたはジャンゴを使用している場合、それは次のようになります。
def some_view(request)
return HttpResponse(request.META['HTTP_USER_AGENT'])
webapp2を場合: 'self.request.headers.get( 'のUser-Agent')' –