标签: django django-piston
哪里可能是错误?
我的代码很常见。
http://pastebin.com/cFfNNGm5 http://wklej.org/id/518600/< - 这就是它
我的一些代码:
http://wklej.org/id/518601/
没有进口
答案 0 :(得分:1)
您似乎不恰当地添加了身份验证:resource.Resource(... authentication=MyAuthenticationClass)而不是resource.Resource(..., authentication=MyAuthenticationClass())。类型不匹配(一个type而不是它的实例),因此整个问题。
resource.Resource(... authentication=MyAuthenticationClass)
resource.Resource(..., authentication=MyAuthenticationClass())
type