Commit f5ad0b713fab440aa04b19b8df3e79ccf121f364

Authored by lanrion
1 parent 04749fb0
Exists in master

修复auth_login错误的endpoint url

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/qy_wechat_api/api/auth_login.rb
... ... @@ -51,7 +51,7 @@ module QyWechatApi
51 51 def base_url(api, params={})
52 52 params = params.to_query
53 53 params = "?#{params}" if params.present?
54   - "#{QyWechatApi::ENDPOINT_URL}/service/#{api}#{params}"
  54 + "/service/#{api}#{params}"
55 55 end
56 56  
57 57 end
... ...