Forums | Admin

Discussion Forums: help

Start New Thread Start New Thread

 

By: Trevor Schroeder
RE: unauth calls [ reply ]  
2007-03-16 14:32
Sure, auth_mode is defined with attr_accessor, so just flickr.auth_mode = false and you're all set.

By: Jamie Quint
unauth calls [ reply ]  
2007-03-16 08:02
I was planning to use this for an app that uses all "unauth" calls to the API, it this even possible. I notice that the method that decides what to call in each case (call method) is based on a class variable @auth_mode which is set at initialization and never changed (or even can be changed for that matter) is this intentional? It makes it so I cannot make unauthorized calls to the API, everything needs a token because for every call to call_method call_auth_method is called.