FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
API-Examples/macOS/APIExample/Common/KeyCenter.swift at main · kwa-android/API-Examples · GitHub
kwa-android
/
API-Examples
Public
forked from
AgoraIO/API-Examples
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
API-Examples
/
macOS
/
APIExample
/
Common
/
KeyCenter.swift
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (37 loc) · 1.97 KB
Breadcrumbs
API-Examples
/
macOS
/
APIExample
/
Common
/
KeyCenter.swift
Copy path
File metadata and controls
41 lines (37 loc) · 1.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// KeyCenter.swift
// OpenLive
//
// Created by GongYuhua on 6/25/16.
// Copyright © 2016 Agora. All rights reserved.
//
import
Foundation
struct
KeyCenter
{
/**
Agora APP ID.
Agora assigns App IDs to app developers to identify projects and organizations.
If you have multiple completely separate apps in your organization, for example built by different teams,
you should use different App IDs.
If applications need to communicate with each other, they should use the same App ID.
In order to get the APP ID, you can open the agora console (https://console.agora.io/) to create a project,
then the APP ID can be found in the project detail page.
声网APP ID
Agora 给应用程序开发人员分配 App ID,以识别项目和组织。如果组织中有多个完全分开的应用程序,例如由不同的团队构建,
则应使用不同的 App ID。如果应用程序需要相互通信,则应使用同一个App ID。
进入声网控制台(https://console.agora.io/),创建一个项目,进入项目配置页,即可看到APP ID。
*/
static
let
AppId
:
String
=
<
#YOUR AppId#
>
/**
Certificate.
Agora provides App certificate to generate Token. You can deploy and generate a token on your server,
or use the console to generate a temporary token.
In order to get the APP ID, you can open the agora console (https://console.agora.io/) to create a project with the App Certificate enabled,
then the APP Certificate can be found in the project detail page.
PS: If the project does not have certificates enabled, leave this field blank.
声网APP证书
Agora 提供 App certificate 用以生成 Token。您可以在您的服务器部署并生成 Token,或者使用控制台生成临时的 Token。
进入声网控制台(https://console.agora.io/),创建一个带证书鉴权的项目,进入项目配置页,即可看到APP证书。
注意:如果项目没有开启证书鉴权,这个字段留空。
*/
static
let
Certificate
:
String
?
=
<
#YOUR Certificate#
>
}
Back
|
FazBrowse Home
|
New Git URL