来自基于 PHP 的应用程序的 Microsoft HealthVault 证书
一些背景信息
我正在开发一个应该与 Microsoft HealthVault 交互的 PHP 应用程序。我能够从 https://sourceforge.net/projects/healthvaultphp/ 下载健康库库并获取存储在我的 healthvault 测试帐户中的数据。
现在,该库附带了“沙箱”app.id、app.cer 等所有身份验证内容。所以我遇到的问题是如何为我的 php 应用程序获取实时证书。我从微软下载了 makecert.exe 文件来为我生成证书,但与 healthvaultphp 库中包含的文本文件相比,它生成了一个二进制文件。
我的问题
以下文件中应如何以及包含哪些内容?
身份验证/app.cer
身份验证/app.fp
身份验证/app.pem
Some background Info
I am working on a PHP application that is supposed to interact with Microsoft HealthVault. I was able to download the health vault library from https://sourceforge.net/projects/healthvaultphp/ and get the data stored in my healthvault test account.
Now the library came with "sandbox" app.id, app.cer, etc. all the authentication stuff. So the issue I am having is how to get live certificate for my php app. I downloaded the makecert.exe file from microsoft to generate a certificate for me, but it generates a binary file compared to the text files included in the healthvaultphp library.
my question
How and what should go into following files?
authentication/app.cer
authentication/app.fp
authentication/app.pem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我完全忘记了我在这里发布了这个问题...以下是我解决此问题的方法:
Microsoft Healthvault setup in PHP
所需文件:
生成 PEM 和 CER 文件
此时,您的 app.cer、app.pem、app.id 和 app.fp 文件已可供使用。
Healthvault 应用程序配置
https://config.healthvault-ppe.com/default.aspx
HealthVault 开发人员中心
http://msdn.microsoft.com/en-us/healthvault/bb688183
HealthVault 事物定义
http://developer.healthvault.com/types/types.aspx
I completely forgot that I had posted this question here... following is how I resolved this issue:
Microsoft Healthvault setup in PHP
Files needed:
Generating PEM and CER files
At this point your app.cer, app.pem, app.id, and app.fp files are ready to be used.
Healthvault application configuration
https://config.healthvault-ppe.com/default.aspx
HealthVault Developer Center
http://msdn.microsoft.com/en-us/healthvault/bb688183
HealthVault Thing definitions
http://developer.healthvault.com/types/types.aspx