microsoftgraph / microsoftgraph/msgraph-sdk-python
IdentitySet class does not have 'phone' property
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 630
- 分支
- 96
- 平均合併
- 15 小時 20 分鐘
- 30 天內合併 PR
- 3
描述
Describe the bug
When trying to make a phone call, I specify the IdentitySet of the Target user like this:
targets = [
InvitationParticipantInfo(
identity = IdentitySet(
phone = Identity(
id = "+mynumber"
)
)
)
]
However I get the following error "IdentitySet.init() got an unexpected keyword argument 'phone'" stating that this parameter is not available for the IdentitySet class.
This works when calling from the rest API
Expected behavior
Parameter should be present in the class, just like the user parameter for calling an teams userid
How to reproduce
target_identity = IdentitySet(phone=Identity(id=graph_p.phone_number))
target = InvitationParticipantInfo(
identity = target_identity
)
request_body = Call(
callback_uri = "myballback",
tenant_id = tenant_id,
source = ParticipantInfo(
identity = IdentitySet(
application = Identity(
id = bot_instance_id
)
)
),
targets = [target],
requested_modalities = [Modality.Audio],
media_config = ServiceHostedMediaConfig(
pre_fetch_media = []
)
)
SDK Version
No response
Latest version known to work for scenario above?
No response
Known Workarounds
Use IdentitySet additional_data parameter in order to inject the phone parameter to the body
Debug output
Click to expand log
```</details>
### Configuration
_No response_
### Other information
_No response_
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
從 IdentitySet 模型進入點開始,重現 issue 中的 IdentitySet(phone=Identity(...)) 建構。將支援的建構函式參數與 REST API 的形狀進行比較,並驗證無需使用 additional_data,即可在產生的要求本文中表示 phone 目標。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- api
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 52/100