<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway) in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427733#M4584</link>
    <description>&lt;P&gt;try double slashes in the path -&amp;gt; "C:\\certfolder\\certificate.cer"&lt;/P&gt;</description>
    <pubDate>Tue, 17 Nov 2020 13:10:22 GMT</pubDate>
    <dc:creator>Greenberet</dc:creator>
    <dc:date>2020-11-17T13:10:22Z</dc:date>
    <item>
      <title>Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427722#M4573</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;I am using the Meraki Python module and having issues getting through our web gateway. &lt;/P&gt;&lt;P&gt;My old scripts use a request.get where I can pass the certificate location in, but I am unable to see how to do this within the meraki python module&lt;/P&gt;&lt;P&gt;Code / Error:&lt;/P&gt;&lt;PRE class="lia-code-sample language-markup"&gt;&lt;CODE&gt;import meraki

x_cisco_meraki_api_key = 'MyKey'

m = meraki.DashboardAPI(x_cisco_meraki_api_key)
orgs = m.organizations.getOrganizations()

print(orgs)&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE class="lia-code-sample language-markup"&gt;&lt;CODE&gt;Organizations, getOrganizations - HTTPSConnectionPool(host='api.meraki.com', port=443): Max retries exceeded with url: /api/v0/organizations (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))), &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Jan 2020 15:08:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427722#M4573</guid>
      <dc:creator>CiscoDave</dc:creator>
      <dc:date>2020-01-13T15:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427723#M4574</link>
      <description>&lt;P&gt;Can you provide an example of what you did previously with &lt;FONT face="courier new,courier"&gt;requests.get&lt;/FONT&gt; to pass in the certificate information to make calls correctly with your corporate proxy please?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 18:40:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427723#M4574</guid>
      <dc:creator>Shiyue Cheng</dc:creator>
      <dc:date>2020-01-13T18:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427724#M4575</link>
      <description>&lt;P&gt;I am able to pass " verify='C:\location\of\my\cert.cer' to the requests.get, and it uses the certificate as expected, see below:&lt;/P&gt;&lt;PRE class="lia-code-sample language-markup"&gt;&lt;CODE&gt;def list_networks(api_key, org_id):
    url = 'https://dashboard.meraki.com/api/v0/organizations/{}/networks'.format(org_id)
    try:
        response = requests.get(url=url, headers={'X-Cisco-Meraki-API-Key': api_key, 'Content-Type': 'application/json'}, verify='C:\\certfolder\\certfile.cer')
        return json.loads(response.text)
    except requests.exceptions.RequestException as e:
        print('Error calling list_networks: {}'.format(e))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Jan 2020 18:57:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427724#M4575</guid>
      <dc:creator>CiscoDave</dc:creator>
      <dc:date>2020-01-13T18:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427725#M4576</link>
      <description>&lt;P&gt;Is this a transparent proxy?  Can you manually use whatever it is as a "normal" proxy?&lt;/P&gt;&lt;P&gt;Can you add *.meraki.com to a whitelist to bypass SSL inspection?&lt;/P&gt;&lt;P&gt;Some other thoughts; Python should trust what the underlying operating systems considers is trusted.  Can you web browse (from this machine running the script) to the below location and get no browser errors?&lt;/P&gt;&lt;P&gt;&lt;A href="https://api.meraki.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://api.meraki.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you do get a browser error, you will need to add the root certificate of your proxy server into the trusted root certificate store on the machine making the request.  I guess it is also possible the the root certicate of the device doing the SSL inspection has expired.  Need to see what that browser test says.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 21:21:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427725#M4576</guid>
      <dc:creator>Philip D'Ath</dc:creator>
      <dc:date>2020-01-13T21:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427726#M4577</link>
      <description>&lt;P&gt;What OS are you using this on?&lt;/P&gt;&lt;P&gt;Also, are you using a "recent" requests module?  Try something like:&lt;/P&gt;&lt;P&gt;pip install &lt;STRONG&gt;-U&lt;/STRONG&gt; requests&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 21:22:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427726#M4577</guid>
      <dc:creator>Philip D'Ath</dc:creator>
      <dc:date>2020-01-13T21:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427727#M4578</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/29793"&gt;@CiscoDave&lt;/A&gt;, this functionality has been pushed to a new &lt;A href="https://pypi.org/project/meraki/#history" target="_blank" rel="noopener nofollow noreferrer"&gt;0.70.5 version&lt;/A&gt; so that you can specify the certificate path in the class instantiation, like this:&lt;/P&gt;&lt;PRE class="lia-code-sample language-python"&gt;&lt;CODE&gt;m = meraki.DashboardAPI(x_cisco_meraki_api_key, certificate_path='C:\\certfolder\\certfile.cer')&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Also, this update contains newly-published endpoints for MV camera quality &amp;amp; retention settings, MX inbound firewall, and MS link aggregations.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 21:46:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427727#M4578</guid>
      <dc:creator>Shiyue Cheng</dc:creator>
      <dc:date>2020-01-13T21:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427728#M4579</link>
      <description>&lt;P&gt;Thank you for that fast turnaround - everything is now working as expected. &lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 13:39:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427728#M4579</guid>
      <dc:creator>CiscoDave</dc:creator>
      <dc:date>2020-01-14T13:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427729#M4580</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm getting a syntax error when trying to define certificate_path as below.  Any ideas on how to work around this?&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;def&lt;/SPAN&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;SPAN&gt;main&lt;/SPAN&gt;&lt;SPAN&gt;():&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;    &lt;/SPAN&gt;&lt;SPAN&gt;# Instantiate a Meraki dashboard API session&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;    dashboard = meraki.DashboardAPI(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;api_key&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'xxxx'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;base_url&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;A href="https://api-mp.meraki.com/api/v0/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://api-mp.meraki.com/api/v0/&lt;/A&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;output_log&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;log_file_prefix&lt;/SPAN&gt;&lt;SPAN&gt;=os.path.basename(&lt;/SPAN&gt;&lt;SPAN&gt;__file__&lt;/SPAN&gt;&lt;SPAN&gt;)[:-&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;log_path&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;print_console&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;SPAN&gt;certificate_path&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'C:&lt;/SPAN&gt;&lt;SPAN&gt;\\&lt;/SPAN&gt;&lt;SPAN&gt;certfolder&lt;/SPAN&gt;&lt;SPAN&gt;\\&lt;/SPAN&gt;&lt;SPAN&gt;certfile.cer'&lt;/SPAN&gt;&lt;SPAN&gt;      &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;    )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 06 Aug 2020 13:42:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427729#M4580</guid>
      <dc:creator>westie1981</dc:creator>
      <dc:date>2020-08-06T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427730#M4581</link>
      <description>&lt;P&gt;looks like you're missing a comma there following the penultimate parameter&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 15:43:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427730#M4581</guid>
      <dc:creator>Shiyue Cheng</dc:creator>
      <dc:date>2020-08-06T15:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427731#M4582</link>
      <description>&lt;P&gt;Thanks for that, I knew it would have been something daft.  Do you know if the full key chain is required?  I'm still having problems, but it is a different challenge this time.&lt;/P&gt;&lt;P&gt;meraki: INFO &amp;gt; Meraki dashboard API session initialized with these parameters: {'version': '0.110.5', 'api_key': '************************************', 'base_url': '&lt;A href="https://api-mp.meraki.com/api/v0/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://api-mp.meraki.com/api/v0/&lt;/A&gt;', 'single_request_timeout': 60, 'certificate_path': 'C:\\certfolder\\certfile.cer', 'requests_proxy': '', 'wait_on_rate_limit': True, 'nginx_429_retry_wait_time': 60, 'action_batch_retry_wait_time': 60, 'retry_4xx_error': False, 'retry_4xx_error_wait_time': 60, 'maximum_retries': 2, 'simulate': False, 'be_geo_id': None, 'caller': None}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;meraki: WARNING &amp;gt; Organizations, getOrganizations - HTTPSConnectionPool(host='api-mp.meraki.com', port=443): Max retries exceeded with url: /api/v0/organizations (Caused by SSLError(SSLError(136, '[X509: NO_CERTIFICATE_OR_CRL_FOUND] no certificate or crl found (_ssl.c:4263)'))), retrying in 1 second&lt;/P&gt;&lt;P&gt;I have checked the basics like is the certificate valid etc and ensured the path is correct and the case is correct.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 19:19:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427731#M4582</guid>
      <dc:creator>westie1981</dc:creator>
      <dc:date>2020-08-06T19:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427732#M4583</link>
      <description>&lt;P&gt;Hi, I am new to meraki module.&lt;/P&gt;&lt;P&gt;I developed the script using meraki module but i always get the below error &lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;(Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)')))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Even after using &lt;STRONG&gt;&lt;FONT color="#FF9900"&gt;certificate_path="C:\certfolder\certificate.cer"&lt;/FONT&gt;&lt;/STRONG&gt; am getting the same error.&lt;/P&gt;&lt;P&gt;Is there any solution for this ? &lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 10:45:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427732#M4583</guid>
      <dc:creator>abc28</dc:creator>
      <dc:date>2020-11-17T10:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427733#M4584</link>
      <description>&lt;P&gt;try double slashes in the path -&amp;gt; "C:\\certfolder\\certificate.cer"&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 13:10:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427733#M4584</guid>
      <dc:creator>Greenberet</dc:creator>
      <dc:date>2020-11-17T13:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427734#M4585</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Yea i tried that too. Still getting the same error.&lt;/P&gt;&lt;P&gt;Is there any other way to download the &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;certificate.cer&lt;/FONT&gt;&lt;/STRONG&gt; and load them into &lt;FONT color="#FF0000"&gt;"certificate_path"&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 14:07:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427734#M4585</guid>
      <dc:creator>abc28</dc:creator>
      <dc:date>2020-11-17T14:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427735#M4586</link>
      <description>&lt;P&gt;I am sending the API calls via python script in pycharm ide on Windows 11.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I can reach the site with no errors but when I run the scripts I get&lt;BR /&gt;&lt;BR /&gt;send&lt;BR /&gt;raise SSLError(e, request=request)&lt;BR /&gt;requests.exceptions.SSLError: HTTPSConnectionPool(host='api.meraki.com', port=443): Max retries exceeded with url: /api/v1/organizations (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)')))&lt;BR /&gt;&lt;BR /&gt;I am setting verify to false to get around it but Id like to fix it properly.&lt;BR /&gt;&lt;BR /&gt;I have tried downloading the cisco umbrella root CA from the dashboard site and import it into my trusted root cert authorities but it hasn't worked.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2023 10:51:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427735#M4586</guid>
      <dc:creator>Adrian41</dc:creator>
      <dc:date>2023-01-31T10:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427736#M4587</link>
      <description>&lt;P&gt;It sounds like pycharm in your environment doesn't have the typical set of trusted root certificates loaded.  I would Google in that area.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2023 19:38:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427736#M4587</guid>
      <dc:creator>Philip D'Ath</dc:creator>
      <dc:date>2023-01-31T19:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427737#M4588</link>
      <description>&lt;P&gt;in my specific situation it was that I had to trust our corporate web gateway root certificate. if you have a similar situation, you can store the cert locally, and use the following line in your python code to reference it:&lt;/P&gt;&lt;PRE&gt;dashboard = meraki.DashboardAPI(MERAKI_DASHBOARD_API_KEY&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;suppress_logging&lt;/SPAN&gt;=&lt;SPAN&gt;True, &lt;/SPAN&gt;&lt;SPAN&gt;certificate_path&lt;/SPAN&gt;=&lt;SPAN&gt;"C:&lt;/SPAN&gt;&lt;SPAN&gt;\\&lt;/SPAN&gt;&lt;SPAN&gt;certs&lt;/SPAN&gt;&lt;SPAN&gt;\\your_cert&lt;/SPAN&gt;&lt;SPAN&gt;.cer"&lt;/SPAN&gt;)&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Jan 2023 19:48:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427737#M4588</guid>
      <dc:creator>CiscoDave</dc:creator>
      <dc:date>2023-01-31T19:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard API via Python - unable to get local issuer certificate (passing through web gateway)</title>
      <link>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427738#M4589</link>
      <description>&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 10:13:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/dashboard-api-via-python-unable-to-get-local-issuer-certificate/m-p/5427738#M4589</guid>
      <dc:creator>Adrian41</dc:creator>
      <dc:date>2023-02-01T10:13:52Z</dc:date>
    </item>
  </channel>
</rss>

