- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个类并试图将它的一个值分配给需要一个字符串的东西,但是它说它正在获取一个 Tuple[str]
而我没有看看怎么样?
from azure.identity import ClientSecretCredential
class ServicePrincipal:
"""
Service Principal class is used to authorise the service
"""
def __init__(self):
self.tenant_id = "123-xyz",
self.client_id = "123-abc",
self.client_secret = "123-lmn",
def credentials(self):
"""
Returns a ClientServiceCredential object using service principal details
:return:
"""
# ISSUE IS HERE
return ClientSecretCredential(
tenant_id=self.tenant_id, # <---- Getting Tuple[str]
client_id=self.client_id, # <---- Getting Tuple[str]
client_secret=self.client_secret, # <---- Getting Tuple[str]
)
如果我将字符串直接复制粘贴到参数中,那就没问题了。那么 self.value
是否以某种方式引起了问题?
最佳答案
你应该去掉这里的逗号:
def __init__(self):
self.tenant_id = "123-xyz", # remove the comma
self.client_id = "123-abc", # remove the comma
self.client_secret = "123-lmn", # remove the comma
逗号使变量成为元组
关于Python 类自身值错误,预期类型 'str' 得到了 Tuple[str],天蓝色 ClientSecretCredential,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64496264/
我在 Azure B2C 中创建了一个策略,下载了它并进行了一些自定义。当我尝试上传它时,出现了这些我不理解的继承错误。即使我不做任何更改,只是尝试上传我刚刚下载的策略,我也会遇到同样的错误。这个错误
我对 Azure 中的“数据连接”有疑问。 我有一个应用服务。我在那里发布了我的 API 应用程序。在我的应用程序中,我有连接字符串(我需要使用数据库)。在我的应用程序的众多设置中,我看到了一个“数据
SQL Azure 刚刚出现了一个奇怪的问题,它发生在完全上线之前的一个小阶段,一些用户正在做一些数据输入。 “服务器 'xxx' 上的数据库 'dbname' 当前不可用。请稍后重新连接。如果问题仍
我已经搜索了很多关于 Spring boot 的支持、Azure AD B2C 安全性的 REST 实现,但找不到任何内容(除了 Azure AD 应用程序或 .net 应用程序)。 这是否意味着Az
已结束。 这个问题是 not reproducible or was caused by typos .它目前不接受答案。 此问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-to
我在 Azure 上创建了 SQL 数据库。我试图从 SQL Server 管理中清除缓存使用: DBCC FREEPROCCACHE, DBCC FREESYSTEMCACHE ('dbo') 不幸
According to this documentation :应用程序和服务主体显然是两个不同的东西。应用程序是全局身份和服务主体 每个租户/AAD 但是This Documentation和 T
如果我通过 Terraform 为现有应用程序网关激活 AKS 的 AGIC: addon_profile { ingress_application_gateway { en
我正在将 oauth 添加到应用程序中,但遇到了以下错误: [invalid_token_response] An error occurred while attempting to retriev
注意:我使用的是 azure apim 我有两个 api 返回 xml 响应如下所示:回应1: 10 响应2: 10 我想转换 XML 响应以获得以下输出,其中 Response 2
我是一名优秀的程序员,十分优秀!