trivialkettle

Results 11 comments of trivialkettle

Any news on this one?

@nejch ``` curl -vv --header "Authorization: Basic " "https://gitlab.company.com/api/v4/user" ``` Returns 401 Though ``` curl -vv --header "Authorization: Basic " "https://gitlab.company.com/api/v4/projects" ``` returns 200 and an empty list.

@nejch Yes this is consistent. ``` >>> client = gitlab.Gitlab(url="gitlab.company.com") >>> client.projects.list() [] ```

@nejch A workaround could be to avoid basic auth from `requests` and use e.g. `Authentication: Bearer ` as shown in https://docs.gitlab.com/ee/api/rest/#authentication

`Authentication: Bearer ` is documented: https://docs.gitlab.com/ee/api/rest/#personalprojectgroup-access-tokens ``` curl --header "Authorization: Bearer " "https://gitlab.example.com/api/v4/projects" ``` So I don't see how we could rely on undocumented behavior. > deviates from the `requests`...

> @nejch Yes this is consistent. > > ``` > >>> client = gitlab.Gitlab(url="gitlab.company.com") > >>> client.projects.list() > [] > ``` To be clear, the behavior is consistent, but the...

TTN updated their license, so its not possible to use a newer version

@rsebi The related issue: https://github.com/chirpstack/chirpstack/pull/61

My usecase is: I have some PCB with a BLE chip that I want to connect to MQTT, I use your MQTT-SN client and the gateway. The BLE chip connects...

Hi, thanks for you explanation. The BT dongle is not just a BT dongle, but another PCB with a BLE chip and is by itself an MQTT client and also...