Hi!
I’m using the last version of Ansible, having the following task:
- uri: url=MY_URL
method=GET user={{ user }} password={{ password }} force_basic_auth=yes return_content=yes
register: configuration
I don’t see json property in configuration… Most probably the reason is that the return type is not “ansible/json” but
…
“content_type”: “application/json; charset=UTF-8”,
…
is here any workaround, or I need to look for a 3rd party module to get json content parsed?
thanks in advance,
Max