Activities of "maliming"

And this commit is the change I made.

https://github.com/maliming/Abp-3394/commit/f95b70cc24ea96dc4da3b08c8a1ece5e6063dd07

Yes, The code already exists on https://github.com/maliming/Abp-3394/tree/main/src

hi everything works.

hi

Is the page HostDashboard.cshtml?

I can't reproduce

Can you try this?


services.AddAbpSwaggerGenWithOAuth(
services.AddTransient<SwaggerGenerator>();
services.Replace(ServiceDescriptor.Transient<ISwaggerProvider, MySwaggerGenerator>());

using System;
using Microsoft.OpenApi.Models;
using Swashbuckle.AspNetCore.Swagger;
using Swashbuckle.AspNetCore.SwaggerGen;
using Volo.Abp.MultiTenancy;

namespace MyCompanyName.MyProjectName.Web;

public class MySwaggerGenerator : ISwaggerProvider
{
    private readonly SwaggerGenerator _innerSwaggerGenerator;
    private readonly SwaggerGeneratorOptions _options;
    private readonly ICurrentTenant _currentTenant;

    public MySwaggerGenerator(SwaggerGenerator innerSwaggerGenerator, SwaggerGeneratorOptions options, ICurrentTenant currentTenant)
    {
        _innerSwaggerGenerator = innerSwaggerGenerator;
        _options = options;
        _currentTenant = currentTenant;
    }

    public OpenApiDocument GetSwagger(string documentName, string host = null, string basePath = null)
    {
        foreach (var securityScheme in _options.SecuritySchemes)
        {
            if (securityScheme.Value.Flows.AuthorizationCode != null && _currentTenant.IsAvailable)
            {
                securityScheme.Value.Flows.AuthorizationCode.AuthorizationUrl = new Uri(securityScheme.Value.Flows.AuthorizationCode.AuthorizationUrl.ToString().Replace("ids", $"{_currentTenant.Name}.ids"));
                securityScheme.Value.Flows.AuthorizationCode.TokenUrl = new Uri(securityScheme.Value.Flows.AuthorizationCode.TokenUrl.ToString().Replace("ids", $"{_currentTenant.Name}.ids"));

            }
        }

        return _innerSwaggerGenerator.GetSwagger(documentName, host, basePath);
    }
}


👍👍👍

Add offline_access to the scopes.

You can save the refresh token when calling the request token. it will both return the access token and refresh token.

Check the endpint and refresh token

hi

abp is modular, when you want to call the API of another project, you can only refer to its contract or http client module, which is a modular design.

Also, it would be useful if you provided an example of proper way to create HttpClient and make HTTP requests in ABP app.

The default module template already includes these APIs and examples.

Showing 8671 to 8680 of 11546 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.