java - Is the "api" part of a Web API route considered by Android's Uri.Builder as part of the authority or a path? -


मैंने इन दोनों की कोशिश की है:

  builder.scheme ("http") .authority ( "10.0.2.2:28642")। appendPath ( "API")। appendPath ( "DeliveryItems")। appendPath ( "PostArgsAndXMLFileAsStr")। builder.scheme ( "http")। प्राधिकारी ( "10.0.2.2:28642/api")। appendPath ( "DeliveryItems")। appendPath ( "PostArgsAndXMLFileAsStr")।   

... और यद्यपि अन्य कारणों से कोड अभी तक काम नहीं कर रहा है, मैं सोच रहा हूं कि किस तरह से सही है:

  .authority ("10.0 .2.2: 28642 "।) appendPath (" API ")।   

- या: <पूर्व> प्राधिकरण ("10.0.2.228642 / एपीआई")।

?

एक यूआरआई का "प्राधिकरण" भाग पहचानता है पथ भाग के शब्दों को निर्दिष्ट करने के लिए कौन जिम्मेदार है यह आमतौर पर एक मेजबान / पोर्ट संयोजन होता है और वैकल्पिक रूप से उपयोगकर्ता नाम / पासवर्ड (जैसा कि http: // user: pass @ host: port / somepage में शामिल है)।



Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -