I want to make a task call via HTTP using the class HttpDispatch from celery, but i need to set Authorization header. How can i do this?
from celery.task.http import HttpDispatch
request = HttpDispatch(
url='http://example.com/multiply',
method='GET', {10})
request.dispatch()