ciucaandrei
ciucaandrei
It seems that this is connected to bigquery This is shown on the Google cloud error log Traceback (most recent call last): File "/base/alloc/tmpfs/dynamic_runtimes/python27g/3f4b27f16594164f/python27/python27_lib/versions/third_party/webapp2-2.3/webapp2.py", line 1511, in __call__ can this...
I just removed analytics.report_event(*args, **kwargs) and response = self.bigquery.tabledata().insertAll( projectId=app_identity.get_application_id(), datasetId=self.bigquery_dataset, tableId=self.bigquery_table, body=obj).execute() from analytics.py and it now seems to work for browsers
I have a similar problem - https://github.com/webrtc/apprtc/issues/715 Did you solve yours? Thanks
app is executing peerConnection = factory.createPeerConnection(rtcConfig, pcObserver); but fails at dataChannel = peerConnection.createDataChannel("ApprtcDemo data", init);
it seems to be a problem with the ice uri: 2021-10-16 18:47:49.341 32549-32605/com.example.webrtc.android W/ice_server_parsing.cc: (line 182): Invalid transport parameter in ICE URI: ["turn:mydomain.com:3478"] I have tried also with ?transport=udp and...
app is executing peerConnection = factory.createPeerConnection(rtcConfig, pcObserver); but fails at dataChannel = peerConnection.createDataChannel("ApprtcDemo data", init);
it seems to be a problem with the ice uri: 2021-10-16 18:47:49.341 32549-32605/com.example.webrtc.android W/ice_server_parsing.cc: (line 182): Invalid transport parameter in ICE URI: ["turn:mydomain.com:3478"] I have tried also with ?transport=udp and...
Hi, I was able to connect with the app if I do not use TURN_SERVER_OVERRIDE = [ { "urls": [ "turn:hostnameForYourTurnServer:19305?transport=udp", "turn:hostnameForYourTurnServer:19305?transport=tcp" ], "username": "TurnServerUsername", "credential": "TurnServerCredentials" }, { "urls":...