| Top |  |  |  |  | 
GFBGraphAuthorizer interface provides a uniform way to implement authentication and authorization process for use by GFBGraph functions.
void gfbgraph_authorizer_process_call (GFBGraphAuthorizer *iface,RestProxyCall *call);
Adds the necessary authorization to call
.
This method modifies call
 in place and is thread safe.
void gfbgraph_authorizer_process_message (GFBGraphAuthorizer *iface,SoupMessage *message);
Adds the necessary authorization to message
. The type of message
can be DELETE, GET and POST.
This method modifies message
 in place and is thread safe.
gboolean gfbgraph_authorizer_refresh_authorization (GFBGraphAuthorizer *iface,GCancellable *cancellable,GError **error);
Synchronously forces iface
 to refresh any authorization tokens
held by it.
This method is thread safe.
| iface | A GFBGraphAuthorizer. | |
| cancellable |  An optional GCancellable object, or  | [allow-none] | 
| error | [allow-none] | 
struct GFBGraphAuthorizerInterface {
        GTypeInterface parent;
        void        (*process_call)          (GFBGraphAuthorizer *iface,
                                              RestProxyCall *call);
        void        (*process_message)       (GFBGraphAuthorizer *iface,
                                              SoupMessage *message);
        gboolean    (*refresh_authorization) (GFBGraphAuthorizer *iface,
                                              GCancellable *cancellable,
                                              GError **error);
};
Interface structure for GFBGraphAuthorizer. All methos should be thread safe.
| GTypeInterface  | The parent interface. | |
| A method to append authorization headers to a a RestProxyCall. | ||
| A method to append authorization headers to a SoupMessage. | ||
| A synchronous method to force a refresh of any authorization
tokes held by the authorizer. It should return  |