CN110602056B - Service parameter transmission method and device - Google Patents

Service parameter transmission method and device Download PDF

Info

Publication number
CN110602056B
CN110602056B CN201910773300.6A CN201910773300A CN110602056B CN 110602056 B CN110602056 B CN 110602056B CN 201910773300 A CN201910773300 A CN 201910773300A CN 110602056 B CN110602056 B CN 110602056B
Authority
CN
China
Prior art keywords
parameter
service
mapping
calling
parameters
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201910773300.6A
Other languages
Chinese (zh)
Other versions
CN110602056A (en
Inventor
庄伟胤
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Xiamen Wangsu Co Ltd
Original Assignee
Xiamen Wangsu Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Xiamen Wangsu Co Ltd filed Critical Xiamen Wangsu Co Ltd
Priority to CN201910773300.6A priority Critical patent/CN110602056B/en
Publication of CN110602056A publication Critical patent/CN110602056A/en
Application granted granted Critical
Publication of CN110602056B publication Critical patent/CN110602056B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/12Applying verification of the received information
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/60Scheduling or organising the servicing of application requests, e.g. requests for application data transmissions using the analysis and optimisation of the required network resources
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/22Parsing or analysis of headers

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Hardware Design (AREA)
  • Computing Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention provides a service parameter transmission method and a device, wherein the method comprises the following steps: receiving a service request message sent by a front end, wherein the service request message carries initial parameters of each service; analyzing the service request message to obtain each service initial parameter; calling a preset parameter mapper to map each service initial parameter to obtain a corresponding mapping parameter; calling a preset parameter checker to check the validity of each mapping parameter; and if all the mapping parameters are verified to be legal, transmitting all the mapping parameters to a service program to obtain a response result of the service request message. By applying the scheme provided by the embodiment of the invention, a parameter mapper and a parameter checker are preset in different request messages and are used for carrying out parameter mapping and validity check on the service initial parameters in the request messages, so that the parameter check of the service scene is carried out after the mapping parameters are obtained.

Description

Service parameter transmission method and device
Technical Field
The present invention relates to the field of computer application technologies, and in particular, to a method and an apparatus for service parameter delivery.
Background
During the development process of the back-end, many parameters transmitted by the front-end are received, for example, the back-end receives parameters of http requests of post and put based on the front-end. After receiving these parameters, the backend usually needs to perform mapping and checking of the parameters.
In implementation, as the framework solution of the back end becomes more mature, a part of the framework has appeared to perform automatic mapping of parameters, for example, a parameter mapping mechanism based on the spring mvc framework may automatically perform automatic mapping of parameters transferred from the front end by using certain parameter annotation.
Although the current framework is more and more mature, and the mapping of parameters and certain validity check are solved, some problems still exist, such as parameter check of a service scenario. The reason why the frame cannot perform the parameter verification of the service scenario is that the code logic of the server end is not executed yet, and the parameter verification of the service scenario cannot be performed at all, for example, it is required to verify whether a resource corresponding to a certain parameter id transmitted by a user belongs to the right of the user.
Disclosure of Invention
In order to solve the problem in the prior art, embodiments of the present invention provide a method and an apparatus for service parameter delivery. The technical scheme is as follows:
in a first aspect, a method for service parameter delivery is provided, where the method includes:
receiving a service request message sent by a front end, wherein the service request message carries initial parameters of each service;
analyzing the service request message to obtain each service initial parameter;
calling a preset parameter mapper to map each service initial parameter to obtain a corresponding mapping parameter;
calling a preset parameter checker to check the validity of each mapping parameter;
and if the mapping parameters are verified to be legal, transmitting the mapping parameters to a service program to obtain a response result of the service request message.
Optionally, the invoking a preset parameter mapper includes:
determining a target service corresponding to the service request message;
and calling a parameter mapper corresponding to the target service.
Optionally, the invoking a preset parameter checker includes:
determining a target service corresponding to the service request message;
and calling a parameter checker corresponding to the target service.
Optionally, the preset parameter mapper includes a plurality of parameter mappers and is configured with a calling order, and the preset parameter checker includes a plurality of parameter mappers and is configured with a calling order;
after the calling of one parameter mapper is finished, calling the corresponding parameter checker, checking the obtained mapping parameters, and calling the next parameter mapper in sequence if the mapping parameters are verified to be legal.
Optionally, if each mapping parameter includes an illegal parameter, an error message is returned to respond to the service request packet.
Optionally, the method further includes: and determining a parameter mapping algorithm based on the type parameter value in the service initial parameter, and calculating the service initial parameter based on the parameter mapping algorithm to obtain the corresponding mapping parameter.
In a second aspect, an apparatus for transferring service parameters is provided, including:
the receiving module is used for receiving a service request message sent by a front end, wherein the service request message carries initial parameters of each service;
the analysis module is used for analyzing the service request message to obtain each service initial parameter;
the mapping module is used for calling a preset parameter mapper to map each service initial parameter to obtain a corresponding mapping parameter;
the checking module is used for calling a preset parameter checker and checking the legality of each mapping parameter;
and the transmission module is used for transmitting each mapping parameter to a service program to obtain a response result of the service request message if each mapping parameter is verified to be legal.
Optionally, the mapping module is further configured to:
determining a target service corresponding to the service request message;
and calling a parameter mapper corresponding to the target service.
Optionally, the check module is further configured to determine a target service corresponding to the service request packet;
and calling a parameter checker corresponding to the target service.
Optionally, the preset parameter mapper includes a plurality of parameter mappers and is configured with a calling order, and the preset parameter checker includes a plurality of parameter mappers and is configured with a calling order;
after the calling of one parameter mapper is finished, calling the corresponding parameter checker, checking the obtained mapping parameters, and calling the next parameter mapper in sequence if the mapping parameters are verified to be legal.
Optionally, the transfer module is further configured to:
and if each mapping parameter contains illegal parameters, returning error information to respond to the service request message.
Optionally, the apparatus further comprises: and the determining module is used for determining a parameter mapping algorithm based on the type parameter value in the service initial parameter, and calculating the service initial parameter based on the parameter mapping algorithm to obtain the corresponding mapping parameter.
The embodiment of the invention provides a service parameter transmission method and a device, wherein corresponding parameter mappers and parameter verifiers are preset in different request messages and are used for carrying out parameter mapping and validity verification on service initial parameters in the request messages so as to realize the parameter verification of a service scene after the mapping parameters are obtained, the parameter mapping and verification in a service program are extracted, and the parameter mapping and verification are realized through the independently arranged parameter mappers and parameter verifiers, so that the parameters transmitted to the service program are valid and valid parameters, the code complexity of the service program is simplified, the program operation problem caused by the invalid parameters can be avoided, and the parameter mapping and verification processes can be more flexibly configured due to the independence of the parameter mappers and the parameter verifiers.
Drawings
In order to more clearly illustrate the technical solutions in the embodiments of the present invention, the drawings needed to be used in the description of the embodiments will be briefly introduced below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings based on these drawings without creative efforts.
Fig. 1 is a schematic flowchart of a service parameter delivery method according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of a service parameter delivery apparatus according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of a computer device according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, embodiments of the present invention will be described in detail with reference to the accompanying drawings.
The following describes the flow of the service parameter delivery method shown in fig. 1 in detail with reference to specific embodiments, and the content may be as follows:
step 100, receiving a service request message sent by a front end, where the service request message carries initial parameters of each service.
In implementation, the business application system may include a front-end interface and a back-end service, and the front-end interface may provide input and output displays for a user and may receive a business request submitted by the user. The front end can send a service request message to the back end based on an http protocol, wherein the service request message carries related service initial parameters, and based on the service request message, the back end can obtain the service request message sent by the front end by receiving an http request.
And step 110, analyzing the service request message to obtain initial parameters of each service.
In implementation, the back end may read the content stream of http, and analyze the read content to obtain the initial parameters of each service carried in the service request message.
And step 120, calling a preset parameter mapper to map the initial parameters of each service to obtain corresponding mapping parameters.
In implementation, a target service corresponding to the service request message can be determined; and calls a parameter mapper corresponding to the target service.
The target service, that is, the service requested by the service request message, may specifically be determined according to the user interface that sends the request message in the front end, and since the content of the user interface corresponding to different requested services is also different, the target service may be determined according to the content of the user interface based on this. For example, the user interface with the current user interface being the commodity information may determine that the target service is an online shopping service.
After the target service is determined, a preset parameter mapper corresponding to the target service can be called, and the parameter mapper comprises an algorithm for performing parameter mapping on each service initial parameter, so that the mapping processing on each service initial parameter is realized, and the corresponding mapping parameter is obtained.
In implementation, a parameter mapping algorithm may be determined based on a type parameter value in the service initial parameter, and the service initial parameter is calculated based on the parameter mapping algorithm to obtain the corresponding mapping parameter.
Specifically, the service initial parameter may include a type parameter value, such as a type value, for determining the mapping algorithm, and different type parameter values correspond to different mapping algorithms.
In one implementation, when the type parameter value is the first preset value, an algorithm ID field value used for characterizing the algorithm ID and an algorithm name field value of the algorithm name may be obtained according to the type parameter value. Correspondingly, the ID and the name of the mapping algorithm can be determined by utilizing the algorithm ID field value and the algorithm name field value; and finally, acquiring a mapping algorithm in the data stored in the self-storage device according to the determined ID and the name.
In an implementation, the first preset value may be any character, number, symbol, and the like.
In another implementation manner, when the type parameter value is the second preset value, the frame ID field value representing the frame ID may be obtained according to the type parameter value. Accordingly, a frame ID field value may be utilized; to determine a target frame; and acquiring a mapping algorithm associated with the target frame from data stored in the data storage device as a mapping algorithm for mapping the service initial parameters.
In an implementation, the second preset value may be any character, number, symbol, and the like.
Step 130, calling a preset parameter checker to check the validity of each mapping parameter.
In implementation, a target service corresponding to the service request message can be determined; and calling a parameter checker corresponding to the target service.
Specifically, the parameter verifier may include a type of verification condition for performing service scenario verification, for example, the parameter verifier corresponding to the account registration target service may include: and judging whether the identity card information of the user exists or not, whether the digit of the identity card information is 18 digits or not and the like. After the parameter mapping is completed, the parameter checker corresponding to the target service can be called, so that the validity check of the mapping result is completed.
In the implementation, the preset parameter mapper may include a plurality of parameter mappers and a plurality of parameter checkers, and the preset parameter checkers may also include a plurality of parameter checkers and a plurality of parameter checkers;
correspondingly, one parameter mapper can correspondingly process one parameter or one type of parameter, under the condition that the initial service parameter is more or more complex, the initial service parameter can be mapped in sequence by setting a plurality of parameter mappers, preferably, after one parameter mapper is executed, a corresponding parameter checker can be called to verify the mapped parameter, if the mapped parameter is verified to be illegal, the subsequent operation can be directly stopped, parameter error information is returned to the front end, and the parameter error information is displayed through a front end interface; if the verification is legal, the next parameter mapper is called in sequence until the parameter mapper and the parameter checker are called in sequence according to the calling sequence to complete the mapping of the initial service parameters and the checking of the mapping parameters.
And step 140, if all the mapping parameters are verified to be legal, transmitting all the mapping parameters to a service program to obtain a response result of the service request message.
In implementation, if each mapping parameter includes an illegal parameter, an error message is returned to respond to the service request message.
And filtering out the parameters which do not accord with the preset verification condition in each mapping parameter by carrying out validity verification on each mapping parameter. Correspondingly, the mapping parameters received by the subsequent normal business program are completely legal parameters, and based on the legal parameters, only the normal process needs to be considered, and other abnormal scenes caused by abnormal parameters do not need to be considered, so that the logic of the business process is completely simplified.
By applying the scheme provided by the embodiment of the invention, a parameter mapper and a parameter checker are preset in different request messages and are used for carrying out parameter mapping and validity check on the service initial parameters in the request messages, so that the parameter check of the service scene is carried out after the mapping parameters are obtained. And moreover, the service is easy to expand by centralized and unified management of parameter mapping and validity check. In addition, after the parameter mapping and the validity verification are completed, the mapping parameters received by the normal business process are completely complete and complete legal parameters, that is, the business process is moving, only the normal process needs to be considered, and other abnormal scenes do not need to be considered, so that the logic of the business process is completely simplified.
The technical solution of the present invention is described below with a specific embodiment, and table 1 below is a list of parameters sent from the front end to the back end:
Figure BDA0002174270500000061
TABLE 1
Table 2 below is a list of parameters that the back-end receives from the front-end:
Figure BDA0002174270500000062
TABLE 2
In an implementation, the front end may determine the names of the currently operating user and training tasks according to the current user interface to determine the value of type, and determine the value of the algorithm field for identifying the mapping algorithm according to the determined value of type.
When the type is A, the front end sends an http request to the back end, wherein the request comprises algorithmId and algorithmName;
after receiving the http request, the back end reads the content in the http request to obtain the algorithmId, and associates the local data to obtain the parameter value corresponding to the algorithmm.
In implementation, the name parameter in the back end is subjected to two-layer nested assignment, that is, a primary path algorithmName transmitted by the front end is subjected to parameter mapping of the name of the back end algorithmin.
The back-end parameter algorithmm searches the data stored by itself through algorithmId, and at the same time, certain service layer check needs to be performed, for example, when the algorithmm authority attribution associated with the algorithmId does not belong to the user authority of the accountId, the validity check does not pass.
Based on the same technical concept, an embodiment of the present invention further provides a service parameter delivery apparatus, as shown in fig. 2, the apparatus includes:
a receiving module 200, configured to receive a service request packet sent by a front end, where the service request packet carries initial parameters of each service;
the parsing module 210 is configured to parse the service request packet to obtain each service initial parameter;
the mapping module 220 is configured to invoke a preset parameter mapper, and perform mapping processing on each service initial parameter to obtain a corresponding mapping parameter;
the checking module 230 is configured to invoke a preset parameter checker to check validity of each mapping parameter;
a transferring module 240, configured to transfer each mapping parameter to a service program if each mapping parameter is verified to be legal, and obtain a response result of the service request packet.
Optionally, the mapping module 220 is further configured to:
determining a target service corresponding to the service request message;
and calling a parameter mapper corresponding to the target service.
Optionally, the checking module 230 is further configured to determine a target service corresponding to the service request packet;
and calling a parameter checker corresponding to the target service.
Optionally, the preset parameter mapper includes a plurality of parameter mappers and is configured with a calling order, and the preset parameter checker includes a plurality of parameter mappers and is configured with a calling order;
after the calling of one parameter mapper is finished, calling the corresponding parameter checker, checking the obtained mapping parameters, and calling the next parameter mapper in sequence if the mapping parameters are verified to be legal.
Optionally, the transferring module 240 is further configured to:
and if each mapping parameter contains illegal parameters, returning error information to respond to the service request message.
Optionally, the apparatus further comprises: and the determining module is used for determining a parameter mapping algorithm based on the type parameter value in the service initial parameter, and calculating the service initial parameter based on the parameter mapping algorithm to obtain the corresponding mapping parameter.
By applying the scheme provided by the embodiment of the invention, a parameter mapper and a parameter checker are preset in different request messages and are used for carrying out parameter mapping and validity check on the service initial parameters in the request messages, so that the parameter check of the service scene is carried out after the mapping parameters are obtained. And moreover, the service is easy to expand by centralized and unified management of parameter mapping and validity check. In addition, after the parameter mapping and the validity verification are completed, the mapping parameters received by the normal business process are completely complete and complete legal parameters, that is, the business process is moving, only the normal process needs to be considered, and other abnormal scenes do not need to be considered, so that the logic of the business process is completely simplified.
Fig. 3 is a schematic structural diagram of a computer device according to an embodiment of the present invention. The computer device 300 may vary widely in configuration or performance and may include one or more central processors 322 (e.g., one or more processors) and memory 332, one or more storage media 330 (e.g., one or more mass storage devices) storing applications 342 or data 344. Memory 332 and storage media 330 may be, among other things, transient storage or persistent storage. The program stored on the storage medium 330 may include one or more modules (not shown), each of which may include a sequence of instructions operating on the computer device 300. Still further, the central processor 322 may be configured to communicate with the storage medium 330 to execute a series of instruction operations in the storage medium 330 on the computer device 300.
The computer apparatus 300 may also include one or more power supplies 324, one or more wired or wireless network interfaces 350, one or more input-output interfaces 358, one or more keyboards 354, and/or one or more operating systems 341, such as Windows Server, Mac OS XTM, UnixTM, LinuxTM, FreeBSDTM, etc.
The computer apparatus 300 may include a memory, and one or more computer programs, wherein the one or more computer programs are stored in the memory and configured to be executed by the one or more processors to implement the above-mentioned parameter mapping method, and in particular, the method includes:
receiving a service request message sent by a front end, wherein the service request message carries initial parameters of each service;
analyzing the service request message to obtain each service initial parameter;
calling a preset parameter mapper to map each service initial parameter to obtain a corresponding mapping parameter;
calling a preset parameter checker to check the validity of each mapping parameter;
and if all the mapping parameters are verified to be legal, transmitting all the mapping parameters to a service program to obtain a response result of the service request message.
It will be understood by those skilled in the art that all or part of the steps for implementing the above embodiments may be implemented by hardware, or may be implemented by a program instructing relevant hardware, where the program may be stored in a computer-readable storage medium, and the storage medium may be a read-only memory, a magnetic disk or an optical disk.
It should be noted that: in the parameter mapping apparatus, the computer device, and the computer-readable storage medium provided in the foregoing embodiments, when performing parameter mapping, only the division of the functional modules is illustrated, and in practical applications, the above function allocation may be completed by different functional modules according to needs, that is, the internal structure of the apparatus is divided into different functional modules, so as to complete all or part of the functions described above. In addition, the parameter mapping apparatus, the computer device, and the computer-readable storage medium provided in the foregoing embodiments belong to the same concept as the embodiments of the parameter mapping method, and specific implementation processes thereof are described in detail in the method embodiments and are not described herein again.
It will be understood by those skilled in the art that all or part of the steps for implementing the above embodiments may be implemented by hardware, or may be implemented by a program instructing relevant hardware, where the program may be stored in a computer-readable storage medium, and the above-mentioned storage medium may be a read-only memory, a magnetic disk or an optical disk, etc.
It is noted that, herein, relational terms such as first and second, and the like may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like that fall within the spirit and principle of the present invention are intended to be included therein.

Claims (6)

1. A method for service parameter delivery, the method comprising:
receiving a service request message sent by a front end, wherein the service request message carries initial parameters of each service;
analyzing the service request message to obtain each service initial parameter;
determining a target service corresponding to the service request message;
calling a preset parameter mapper corresponding to the target service, and mapping each service initial parameter to obtain a corresponding mapping parameter;
calling a preset parameter checker corresponding to the target service, and carrying out validity check on each mapping parameter;
the preset parameter mapper comprises a plurality of parameter verifiers, and the preset parameter verifier comprises a plurality of parameter mappers, wherein the parameter mappers are set with calling sequences;
after the calling of one parameter mapper is finished, calling the corresponding parameter checker, checking the obtained mapping parameters, if the mapping parameters are verified to be legal, calling the next parameter mapper in sequence, if the mapping parameters are verified to be illegal, stopping the calling of the next parameter mapper, and returning error information;
and if all the mapping parameters are verified to be legal, transmitting all the mapping parameters to a service program to obtain a response result of the service request message.
2. The method of claim 1, wherein if each of the mapping parameters includes an illegal parameter, an error message is returned to respond to the service request message.
3. The method of claim 1, wherein the method further comprises: and determining a parameter mapping algorithm based on the type parameter values in the service initial parameters, and calculating the service initial parameters based on the parameter mapping algorithm to obtain the corresponding mapping parameters.
4. An apparatus for service parameter delivery, the apparatus comprising:
a receiving module, configured to receive a service request packet sent by a front end, where the service request packet carries initial parameters of each service;
the analysis module is used for analyzing the service request message to obtain each service initial parameter;
the mapping module is used for determining a target service corresponding to the service request message, calling a preset parameter mapper corresponding to the target service, and mapping each service initial parameter to obtain a corresponding mapping parameter;
the checking module is used for determining a target service corresponding to the service request message, calling a preset parameter checker corresponding to the target service, and checking the validity of each mapping parameter;
the preset parameter mappers comprise a plurality of preset parameter mappers and are set with calling sequences, and the preset parameter checkers comprise a plurality of preset parameter checkers and are set with calling sequences;
after the calling of one parameter mapper is finished, calling the corresponding parameter checker, checking the obtained mapping parameters, calling the next parameter mapper in sequence if the mapping parameters are verified to be legal, stopping calling the next parameter mapper if the mapping parameters are verified to be illegal, and returning error information;
and the transmission module is used for transmitting each mapping parameter to a service program to obtain a response result of the service request message if each mapping parameter is verified to be legal.
5. A computer device, comprising:
at least one processor; and the number of the first and second groups,
a memory communicatively coupled to the at least one processor; wherein the content of the first and second substances,
the memory stores instructions executable by the at least one processor to enable the at least one processor to perform the traffic parameter delivery method of any of claims 1-3.
6. A computer-readable storage medium, storing a computer program, wherein the computer program, when executed by a processor, implements the service parameter delivery method of any of claims 1-3.
CN201910773300.6A 2019-08-21 2019-08-21 Service parameter transmission method and device Active CN110602056B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910773300.6A CN110602056B (en) 2019-08-21 2019-08-21 Service parameter transmission method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910773300.6A CN110602056B (en) 2019-08-21 2019-08-21 Service parameter transmission method and device

Publications (2)

Publication Number Publication Date
CN110602056A CN110602056A (en) 2019-12-20
CN110602056B true CN110602056B (en) 2022-08-30

Family

ID=68854947

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910773300.6A Active CN110602056B (en) 2019-08-21 2019-08-21 Service parameter transmission method and device

Country Status (1)

Country Link
CN (1) CN110602056B (en)

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111190750B (en) * 2019-12-25 2024-04-16 北京懿医云科技有限公司 Data processing method and system
CN111563075B (en) * 2020-05-06 2024-01-23 政采云有限公司 Service verification system, method and equipment and storage medium
CN112363935A (en) * 2020-11-11 2021-02-12 平安普惠企业管理有限公司 Data joint debugging method and device, electronic equipment and storage medium
CN112787858B (en) * 2020-12-30 2022-05-10 浙江三维利普维网络有限公司 Data model parameter configuration method and device, electronic device and storage medium
CN113126999A (en) * 2021-04-23 2021-07-16 中国工商银行股份有限公司 Parameter checking method, parameter checking device and electronic equipment
CN113626314B (en) * 2021-07-16 2023-12-22 济南浪潮数据技术有限公司 Verification method, device and equipment for cloud platform resource parameters and readable medium
CN114070886A (en) * 2021-11-17 2022-02-18 深圳壹账通智能科技有限公司 Message conversion method, device, equipment and medium

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106850743A (en) * 2016-12-21 2017-06-13 腾讯科技(深圳)有限公司 A kind of business authorization method and device
CN107609873A (en) * 2017-09-08 2018-01-19 阿里巴巴集团控股有限公司 A kind of barcode scanning safe checking method and device
CN109842620A (en) * 2019-01-21 2019-06-04 中国联合网络通信集团有限公司 Service publishing method and device

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8189621B2 (en) * 2006-05-12 2012-05-29 Microsoft Corporation Stack signaling to application with lack of requested bandwidth
CN103544074B (en) * 2012-07-09 2016-06-29 阿里巴巴集团控股有限公司 The method of calibration of a kind of business and device
CN104486337B (en) * 2014-12-12 2018-05-18 北京国双科技有限公司 Validation of Data method and device
CN109726018A (en) * 2018-02-07 2019-05-07 中国平安财产保险股份有限公司 Method for processing business, device, equipment and computer readable storage medium
CN109617646B (en) * 2018-10-22 2022-10-25 中国平安财产保险股份有限公司 Message conversion method and device, computer equipment and computer readable storage medium

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106850743A (en) * 2016-12-21 2017-06-13 腾讯科技(深圳)有限公司 A kind of business authorization method and device
CN107609873A (en) * 2017-09-08 2018-01-19 阿里巴巴集团控股有限公司 A kind of barcode scanning safe checking method and device
CN109842620A (en) * 2019-01-21 2019-06-04 中国联合网络通信集团有限公司 Service publishing method and device

Also Published As

Publication number Publication date
CN110602056A (en) 2019-12-20

Similar Documents

Publication Publication Date Title
CN110602056B (en) Service parameter transmission method and device
CN106339222B (en) A kind of service implementing method and device
CN104660557B (en) operation processing method and device
CN111954173B (en) Method, device, server and computer readable storage medium for sending short message
CN110728455B (en) Service processing method, service processing device, storage medium and electronic equipment
CN109117609B (en) Request intercepting method and device
CN109639719B (en) Identity verification method and device based on temporary identifier
CN105072139A (en) Recommendation method and recommendation device
CN111200523A (en) Middle station system configuration method, device, equipment and storage medium
CN105871888A (en) Identity authentication method, device and system
CN109819023B (en) Distributed transaction processing method and related product
CN105184559B (en) A kind of payment system and method
CN106875184B (en) Abnormal scene simulation method, device and equipment
CN109040056B (en) User verification method based on server
CN110322250A (en) The recognition methods of inactive users courses of action, device, equipment and storage medium
CN114677208A (en) Service processing method and processing device
CN115426147A (en) Cloud platform service access method, system, equipment and storage medium
CN112131267B (en) Count processing method, device, server and count processing system
CN111010676B (en) Short message caching method, device and system
CN108366136A (en) A kind of analysis method and device of domain name
CN113691618A (en) Message notification method, device, message center and storage medium
CN112860398A (en) Data processing method, device, equipment and medium based on rule engine
CN111681097A (en) Account type identification method, server, electronic equipment and system
CN112433821B (en) Method and device for building business model, electronic equipment and medium
CN102412986A (en) Operator unification service platform system based on integration identification network and method thereof

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant