电子中的 Soundcloud 认证
Soundcloud authentication in electron
我正在尝试使用 Electron 构建 Soundcloud 桌面应用程序,但我正在努力了解如何获取身份验证密钥。在下面来自 Soundcloud api 的片段中,他们解释说您可以使用 "custom protocol scheme" 作为您的重定向 uri。
You authenticate Mobile and Desktop Applications the same way you do
for Server-side Web Applications. To make the flow smoother, you can
use a redirect_uri with a custom protocol scheme and set your app as a
handler for that protocol scheme. For example, your redirect_uri could
be something like my-app://soundcloud/callback.
这可以使用电子吗?
是的,这是可能的。 GitHub 上有一个名为 Cumulus 的存储库:
https://github.com/gillesdemey/Cumulus
此应用程序基于 electron 构建并使用 SoundCloud API,如果您查看此文件或存储库中的内容,您可能能够了解它如何使用 API:
https://github.com/gillesdemey/Cumulus/blob/master/app/js/utils/soundcloud.js
希望对您有所帮助
我正在尝试使用 Electron 构建 Soundcloud 桌面应用程序,但我正在努力了解如何获取身份验证密钥。在下面来自 Soundcloud api 的片段中,他们解释说您可以使用 "custom protocol scheme" 作为您的重定向 uri。
You authenticate Mobile and Desktop Applications the same way you do for Server-side Web Applications. To make the flow smoother, you can use a redirect_uri with a custom protocol scheme and set your app as a handler for that protocol scheme. For example, your redirect_uri could be something like my-app://soundcloud/callback.
这可以使用电子吗?
是的,这是可能的。 GitHub 上有一个名为 Cumulus 的存储库:
https://github.com/gillesdemey/Cumulus
此应用程序基于 electron 构建并使用 SoundCloud API,如果您查看此文件或存储库中的内容,您可能能够了解它如何使用 API:
https://github.com/gillesdemey/Cumulus/blob/master/app/js/utils/soundcloud.js
希望对您有所帮助