- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 588 for USERNAME (0.06 sec)
-
docs/en/docs/tutorial/security/index.md
But first, let's check some small concepts. ## In a hurry? If you don't care about any of these terms and you just need to add security with authentication based on username and password *right now*, skip to the next chapters. ## OAuth2 OAuth2 is a specification that defines several ways to handle authentication and authorization.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/security/oauth2-jwt.md
同理,JWT 可以用于更复杂的场景。 在这些情况下,多个实体的 ID 可能是相同的,以 ID `foo` 为例,用户的 ID 是 `foo`,车的 ID 是 `foo`,博客的 ID 也是 `foo`。 为了避免 ID 冲突,在给用户创建 JWT 令牌时,可以为 `sub` 键的值加上前缀,例如 `username:`。因此,在本例中,`sub` 的值可以是:`username:johndoe`。 注意,划重点,`sub` 键在整个应用中应该只有一个唯一的标识符,而且应该是字符串。 ## 检查 运行服务器并访问文档: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11K bytes - Viewed (0) -
common-protos/k8s.io/api/authentication/v1beta1/generated.proto
// UserInfo holds the information about the user needed to implement the // user.Info interface. message UserInfo { // The name that uniquely identifies this user among all active users. // +optional optional string username = 1; // A unique value that identifies this user across time. If this user is // deleted and another user by the same name is added, they will have // different UIDs. // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebAuthenticationBhv.java
result.setUpdatedBy(DfTypeUtil.toString(source.get("updatedBy"))); result.setUpdatedTime(DfTypeUtil.toLong(source.get("updatedTime"))); result.setUsername(DfTypeUtil.toString(source.get("username"))); result.setWebConfigId(DfTypeUtil.toString(source.get("webConfigId"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
// #324 public void testDefaultCredentials() throws CIFSException { Properties props = new Properties(); props.put("jcifs.smb.client.domain", "my-domain"); props.put("jcifs.smb.client.username", "my-default-user-id"); props.put("jcifs.smb.client.password", "my-default-password"); CIFSContext auth = new BaseContext(new PropertyConfiguration(props)); assertTrue(auth.hasDefaultCredentials());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
internal/event/target/kafka.go
ClientTLSCert string `json:"clientTLSCert"` ClientTLSKey string `json:"clientTLSKey"` } `json:"tls"` SASL struct { Enable bool `json:"enable"` User string `json:"username"` Password string `json:"password"` Mechanism string `json:"mechanism"` } `json:"sasl"` Producer struct { Compression string `json:"compression"` CompressionLevel int `json:"compressionLevel"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* Property <tt>jcifs.smb.client.domain</tt> * * @return default credentials, domain name */ String getDefaultDomain (); /** * * Property <tt>jcifs.smb.client.username</tt> * * @return default credentials, user name */ String getDefaultUsername (); /** * * Property <tt>jcifs.smb.client.password</tt> *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/oauth2-jwt.md
前回と同じ方法でアプリケーションの認可を行います。 次の認証情報を使用します: Username: `johndoe` Password: `secret` /// check | "確認" コードのどこにも平文のパスワード"`secret`"はなく、ハッシュ化されたものしかないことを確認してください。 /// <img src="/img/tutorial/security/image08.png"> エンドポイント`/users/me/`を呼び出すと、次のようなレスポンスが得られます: ```JSON { "username": "johndoe", "email": "******@****.***", "full_name": "John Doe",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.1K bytes - Viewed (1) -
docs/fr/docs/features.md
Plus jamais vous ne vous tromperez en tapant le nom d'une clé, vous ne ferez des aller-retour entre votre code et la documentation ou vous ne scrollerez de haut en bas afin d'enfin savoir si vous devez taper `username` ou `user_name`. ### Court
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.logonShare = p.getProperty("jcifs.smb.client.logonShare", null); this.defaultDomain = p.getProperty("jcifs.smb.client.domain", null); this.defaultUserName = p.getProperty("jcifs.smb.client.username", null); this.defaultPassword = p.getProperty("jcifs.smb.client.password", null); this.netbiosHostname = p.getProperty("jcifs.netbios.hostname", null);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0)