Мне нужно реализовать регистрацию и регистрацию B2C для моего приложения.Я скачал код по ссылке ниже с GitHub.https://github.com/Azure-Samples/active-directory-b2c-ios-swift-native-msal
Здесь показано, что мне нужно настроить некоторую константу.
let kTenantName = "<tenant>.onmicrosoft.com" // Your tenant name
let kClientID = "<your-client-id>" // Your client ID from the portal when you created your application
let kSignupOrSigninPolicy = "<your-signin-policy>" // Your signup and sign-in policy you created in the portal
let kEditProfilePolicy = "<your-edit-profile-policy>" // Your edit policy you created in the portal
let kGraphURI = "<Your backend API>" // This is your backend API that you've configured to accept your app's tokens
let kScopes: [String] = ["<Your backend API>/demo.read"] // This is a scope that you've configured your backend API to look for.
Теперь, где я возьму kGraphURI и kScopes?