Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
Connector for accessing Jfrog pypi feed
-
Hello,
I'm trying to setup a pypi feed, with a connector which connects to a jfrog pypi repo.
When querying for a package, I'm getting 406 http error. I suppect the problem is the Accept Headers.
Is possible to log all calls that are made by ProGet to visualize the problem ? Do you advice any solution without changing something on jfrog repo ?
Best Regards,
Pedro
-
Hi @pmsensi ,
You'd need to run through a proxy like Fiddler or ProxyMan, which can capture the outbound / inbound traffic. Or if you provide us with a URL/API key we might be able to play around and attach a debugger. You could always create a free trial or something and set it up that way.
First thing that comes to mind is that your endpoint is incorrect and you may need to "play around" with the URL. Typically it's like this:
- endpoint is
https://server.corp/path/my-pypi - index file is
https://server.corp/path/my-pypi/simple - ProGet automatically appends
/simpleunless you specify otherwise on Advanced
The "Simple " endpoint is just a list of HTML like
<a href="...">. That's what ProGet/connectors/pypi follow.Thanks,
Steve
- endpoint is