<div dir="ltr"><div>John,</div><div><br></div><div>Thanks for that hint. Here is what I finally used.</div><div><br></div><div><div>auth_mgr = QgsApplication.authManager()  </div>conf_map = auth_mgr.availableAuthMethodConfigs()</div><div>for key in conf_map.keys():</div><div>    name = conf_map[key].name()</div><div>    print( key )</div><div>    print( name )</div><div><br></div><div>So that gives me both the authentication id and its name. Thanks so much.</div><div><br></div><div>Calvin<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Feb 3, 2020 at 6:24 AM John Gitau <<a href="mailto:gkahiu@gmail.com">gkahiu@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi Calvin,<div><br></div><div>You can retrieve the name from the base config object as follows:</div><div><br></div><div>auth_mgr = QgsApplication.authManager()  </div><div>conf_map = auth_mgr.availableAuthMethodConfigs()<br></div><div>for id, conf in conf_map.iteritems():<br>    conf_name = <a href="http://conf.name" target="_blank">conf.name</a>()<br>    print conf_name<br></div><div><br></div><div>I hope this helps.</div><div><br></div><div>Cheers,</div><div><br></div><div>John</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jan 31, 2020 at 11:11 PM C Hamilton <<a href="mailto:adenaculture@gmail.com" target="_blank">adenaculture@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>I can get a list of all of the authentication IDs in QGIS by these two lines of code.</div><div><br></div><div>authMgr = QgsApplication.authManager()</div><div>authIdList = authMgr.configIds()</div><div><br></div><div>Starting from one of the authentication ids in the list I cannot seem to find out how to retrieve its associated name. It is probably simple, but I cannot find the right method to call. Does anyone know how to do it?<br></div><div><br></div><div>Thanks,</div><div><br></div><div>Calvin<br></div></div>
_______________________________________________<br>
QGIS-Developer mailing list<br>
<a href="mailto:QGIS-Developer@lists.osgeo.org" target="_blank">QGIS-Developer@lists.osgeo.org</a><br>
List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a></blockquote></div>
</blockquote></div>