mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	fix:err and name
This commit is contained in:
		
							parent
							
								
									7bf29e8e5a
								
							
						
					
					
						commit
						cb47d57ccd
					
				@ -24,7 +24,7 @@ geTui:
 | 
			
		||||
  channelName: ''
 | 
			
		||||
fcm:
 | 
			
		||||
  serviceAccount: "x.json"
 | 
			
		||||
  verifyUrl: ""
 | 
			
		||||
  authUrl: ""
 | 
			
		||||
jpns:
 | 
			
		||||
  appKey: ''
 | 
			
		||||
  masterSecret: ''
 | 
			
		||||
 | 
			
		||||
@ -52,16 +52,16 @@ func NewClient(pushConf *config.Push, cache cache.ThirdCache, fcmConfigPath stri
 | 
			
		||||
		// with file path
 | 
			
		||||
		credentialsFilePath := filepath.Join(fcmConfigPath, pushConf.FCM.ServiceAccount)
 | 
			
		||||
		opt = option.WithCredentialsFile(credentialsFilePath)
 | 
			
		||||
	case len(pushConf.FCM.VerifyUrl) != 0:
 | 
			
		||||
		// with verify url
 | 
			
		||||
	case len(pushConf.FCM.AuthUrl) != 0:
 | 
			
		||||
		// with authentication url
 | 
			
		||||
		client := httputil.NewHTTPClient(httputil.NewClientConfig())
 | 
			
		||||
		resp, err := client.Get(pushConf.FCM.VerifyUrl)
 | 
			
		||||
		resp, err := client.Get(pushConf.FCM.AuthUrl)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return nil, errs.Wrap(err)
 | 
			
		||||
			return nil, err
 | 
			
		||||
		}
 | 
			
		||||
		opt = option.WithCredentialsJSON(resp)
 | 
			
		||||
	default:
 | 
			
		||||
		return nil, errs.New("no FCM config")
 | 
			
		||||
		return nil, errs.New("no FCM config").Wrap()
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	fcmApp, err := firebase.NewApp(context.Background(), nil, opt)
 | 
			
		||||
 | 
			
		||||
@ -203,7 +203,7 @@ type Push struct {
 | 
			
		||||
	} `mapstructure:"geTui"`
 | 
			
		||||
	FCM struct {
 | 
			
		||||
		ServiceAccount string `mapstructure:"serviceAccount"`
 | 
			
		||||
		VerifyUrl      string `mapstructure:"verifyUrl"`
 | 
			
		||||
		AuthUrl        string `mapstructure:"authUrl"`
 | 
			
		||||
	} `mapstructure:"fcm"`
 | 
			
		||||
	JPNS struct {
 | 
			
		||||
		AppKey       string `mapstructure:"appKey"`
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user