This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iceState: function(iceConnectionState){ | |
if (iceConnectionState == "failed"){ | |
restartLocalPeerConnection(); | |
} | |
} | |
... | |
function restartLocalPeerConnection(){ | |
switchVideoDevice(userVideoinputDevices[0].deviceId); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switchVideoinput: function(mediaDeviceId, callbacks){ | |
// stop & close previous local peer | |
this.videoRoomPlugin.hangup(true); | |
// request new stream | |
var constraints = { | |
audio: true, | |
video: {deviceId: {exact: mediaDeviceId}} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ApplicationRecord | |
validates :login, presence: true, uniqueness: true | |
end | |
class CreateUsers < ActiveRecord::Migration[5.1] | |
def change | |
create_table :users do |t| | |
t.string :login | |
t.string :full_name | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.quickblox.chat.model; | |
import android.text.TextUtils; | |
import com.quickblox.chat.propertyparsers.MessagePropertyParser; | |
import org.jivesoftware.smack.SmackException; | |
import org.jivesoftware.smack.packet.ExtensionElement; | |
import org.jivesoftware.smack.provider.ExtensionElementProvider; | |
import org.jivesoftware.smack.util.XmlStringBuilder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get valid JWT public keys and save to cache | |
# | |
# Must correspond to one of the public keys listed at | |
# https://www.googleapis.com/robot/v1/metadata/x509/[email protected] | |
# | |
valid_public_keys = Rails.cache.read(VALID_JWT_PUBLIC_KEYS_RESPONSE_CACHE_KEY) | |
if valid_public_keys.nil? | |
uri = URI("https://www.googleapis.com/robot/v1/metadata/x509/[email protected]") | |
https = Net::HTTP.new(uri.host, uri.port) | |
https.use_ssl = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread Name: jp@gc - Stepping Thread Group 1-1 | |
Sample Start: 2017-04-28 16:16:58 BST | |
Load time: 21000 | |
Connect Time: 0 | |
Latency: 0 | |
Size in bytes: 773 | |
Headers size in bytes: 0 | |
Body size in bytes: 773 | |
Sample Count: 1 | |
Error Count: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
02-21 11:18:00.684 18925-18925/? E/AndroidRuntime: FATAL EXCEPTION: main | |
Process: com.quickblox.q_municate, PID: 18925 | |
java.lang.NullPointerException: Attempt to invoke interface method 'boolean java.util.Collection.isEmpty()' on a null object reference | |
at com.quickblox.q_municate_core.utils.ChatNotificationUtils.parseDialogFromQBMessage(ChatNotificationUtils.java:68) | |
at com.quickblox.q_municate_core.qb.helpers.QBChatHelper.onChatMessageReceived(QBChatHelper.java:673) | |
at com.quickblox.q_municate_core.qb.helpers.QBChatHelper.access$600(QBChatHelper.java:63) | |
at com.quickblox.q_municate_core.qb.helpers.QBChatHelper$AllChatMessagesListener.processMessage(QBChatHelper.java:740) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String token = BaseService.getBaseService().getToken(); | |
Date expirationDate = BaseService.getBaseService().getTokenExpirationDate(); | |
// save to secure storage when your application goes offline or to the background | |
... | |
// recreate session on next start app | |
Date currentDate = new Date(); | |
Calendar cal = Calendar.getInstance(); | |
cal.setTime(currentDate); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"session_id": 4947315360452683, | |
"session_last_activity": 253731743098, | |
"session_transport": "janus.transport.websockets", | |
"handle_id": 3861225917609465, | |
"created": 253271067295, | |
"send_thread_created": true, | |
"current_time": 253737709272, | |
"plugin": "janus.plugin.videoroom", | |
"plugin_specific": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"session_id": 4947315360452683, | |
"session_last_activity": 253454782634, | |
"session_transport": "janus.transport.websockets", | |
"handle_id": 7530704458089235, | |
"created": 253312809178, | |
"send_thread_created": true, | |
"current_time": 253456828153, | |
"plugin": "janus.plugin.videoroom", | |
"plugin_specific": { |