Robert W

Results 25 comments of Robert W

I'm curious if this works better in authzync (I don't have a huge LDAP directory to test with). https://github.com/rbw0/authzync It uses a different LDAP library.

Can you elaborate? Do you mean OIDC, Okta and OAuth?

@satzynu ping

Life's a little busy right now, but yes - it sure is. I'll be looking into adding more authentication methods once I've completed some documentation updates. If someone wants to...

I'll start working on this shortly.

I'm sorry this got delayed again. Thank you for the input @padrian2s > Let the user provide oauth client. Sounds like a great idea I think. Would you be interested...

Currently, you'll need to use a custom `aiohttp.ClientSession`. Something like this should work: ```python class ProxySession(aiohttp.ClientSession): def __init__(self, *args, **kwargs): super(ProxySession, self).__init__(*args, trust_env=True, **kwargs) client = aiosnow.Client(session_cls=ProxySession) ... ``` The...

Good points @manvillej, thanks. aiosnow was designed to support multiple APIs, I think this can be implemented cleanly. I've created an investigation task and associated with this issue. You'll be...

There are 5 APIs that need to be mapped. Should be fairly easy if we build on top of aiosnow.models.table.BaseTableModel. - **cart** - nested schema for recurring_frequency - nested schema...

Hello, This should be possible already, you need to declare a custom `TableModel`, using one or more `aiosnow.fields`. Here's a totally unrelated Issue with some CMDB schemas: https://github.com/rbw/aiosnow/issues/96. The idea...