我想auto-autorize some trusted apps我們的軌道API與看門如何指定門衛skip_authorization塊的superapp(s)列表?
# Skip Authorization for trusted clients
Doorkeeper.configure
skip_authorization do |resource_owner, client|
client.superapp? || resource_owner.admin?
end
end
據this comment,它是應用程序能夠理解的概念。
這應該使用client_id(s)白名單來完成嗎? 如何指定superapp(s)的列表? 在此先感謝!