Anna Zolkieve

Results 8 comments of Anna Zolkieve

reason: ``` 00:47:34 idevice.c:1201 idevice_connection_enable_ssl(): ERROR during SSL handshake: error:0A000152:SSL routines::unsafe legacy renegotiation disabled 00:47:34 lockdown.c:779 lockdownd_client_new_with_handshake(): Session opening failed. ``` and later: ``` 00:47:34 property_list_service.c:205 internal_plist_receive_timeout(): initial read=4 00:47:34...

fixed by: ``` opts |= SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION; SSL_CTX_set_options(ssl_ctx, opts); ```

install: ``` $ make install Making install in src /opt/local/bin/gmkdir -p '/usr/local/lib' /bin/sh ../libtool --mode=install /opt/local/bin/ginstall -c libimobiledevice-glue-1.0.la '/usr/local/lib' libtool: install: /opt/local/bin/ginstall -c .libs/libimobiledevice-glue-1.0.0.dylib /usr/local/lib/libimobiledevice-glue-1.0.0.dylib libtool: install: (cd /usr/local/lib &&...

@annazolkieve fixed with `export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/`

``` $ python3 slack.py --token xoxp-XXX Successfully authenticated for team XXX (ID 000) and user XXX (ID XXX) Status code: 200 Data retrieved OK. Status code: 200 Error: invalid_auth Traceback...

`users.list` returns `invalid_auth` while previously telling `Successfully authenticated`.

> You need to send Authorization token inside headers. Earlier we were passing the token along with the query params but according to the latest documentation on slack, now we...

Also: https://api.slack.com/methods/users.list: > Authentication token bearing required scopes. Tokens should be passed as an HTTP Authorization header or alternatively, as a POST parameter.