1. Homepage
  2. Programming
  3. 6003CEM Web API Development Coursework 2 of 2 - API Portfolio

6003CEM Web API Development Coursework 2 of 2 - API Portfolio

Engage in a Conversation
UKCoventry University6003CEMWeb API DevelopmentAPI Portfolio

6003CEM Web API Development Coursework 2 of 2 - API Portfolio CourseNana.COM


CourseNana.COM


CourseNana.COM

Submission arrangement: Aula, CU GitHub, Codio File types and method of recording: CourseNana.COM

Codio box: runnable API/client code and associated documentation.
CU GitHub repository: all versioned code.
Aula (HandIn): API demo video, URL links to CU GitHub repository and Codio box, short written summary of your RESTful API (100-200 words). CourseNana.COM

Module Learning Outcomes (LOs) Assessed: CourseNana.COM


CourseNana.COM

Learning Outcome CourseNana.COM

1 Demonstrate systematic knowledge of the current state of the art in web technologies being deployed by mainstream businesses to create Web APIs. CourseNana.COM

3 Scope, design and implement a simple Web API to solve a given problem. CourseNana.COM

5 Understand and implement Web API security and authentication. CourseNana.COM


CourseNana.COM

Assessment Task CourseNana.COM

You work for a company that specialises in providing API-backed web applications to small and medium sized enterprises (SMEs) and charities. The company has several clients and a large backlog of projects which need to be completed. CourseNana.COM

You have been asked to complete ONE project either from the existing client list (below) to reduce the backlog or a demo project of your own design, to add to your company's sales demo portfolio. CourseNana.COM

To complete the project you select, your manager has specified you do the following subtasks: CourseNana.COM

  1. Design an industry standard OpenAPI Specification (OAS) document that describes and fully documents your API.
  2. Build a secure RESTful API using Node JS libraries, to implement your OAS design.
  3. Design and implement automated API endpoint tests, to verify your API works according to specification.
  4. Build a functional and secure web client single page application (SPA) for the API OR integrate one or more external third-party API(s) data into your own (e.g., choosing from those available at https://github.com/public-apis/public-apis).
  5. Showcase your API and client/integration in a demonstration video.

Your developed API should be populated with realistic user/resource/collection data to show it working in the demonstration and/or in the automated tests. CourseNana.COM

Marks Breakdown CourseNana.COM

For an explanation of how the marks are divided between the subtasks, see the grading rubric at the end of this document. CourseNana.COM

Project Backlog CourseNana.COM

Choose one of the following API services to develop for your project or propose your own using the form below. Some example REST resources are provided after the service names, but these are just suggestions: it is up to you to decide which resources/collections your RESTful API will provide and manage. CourseNana.COM

NB: as this is an individual portfolio project assessment, students submitting the same project will be carefully compared for similarity/possible plagiarism. Please do not share code with your classmates. CourseNana.COM

  1. Social media platform API (e.g. users, posts, comments, likes)
  2. E-commerce platform API (e.g. products, categories, orders, payment)
  3. Calendar and scheduling API (e.g. events, reminders, attendees)
  4. Weather forecast API (e.g. current weather, forecast, alerts)
  5. News aggregator API (e.g. sources, articles, categories)
  6. Translation API (e.g. text, speech, languages)
  7. Music streaming API (e.g. songs, albums, artists, playlists)
  1. Recipe search and management API (e.g. recipes, ingredients, meal plans)
  2. Fitness and wellness tracking API (e.g. exercise, nutrition, progress)
  3. Public transportation schedule and route API (e.g. buses, trains, stops)
  4. Movie and TV show database API (e.g. titles, cast, reviews)
  5. Real estate listings API (e.g. properties, agents, locations)
  6. Job listing and application API (e.g. jobs, resumes, applications)
  7. Book and literature database API (e.g. books, authors, reviews)
  8. Currency exchange rate API (e.g. rates, conversion)
  9. Public data and statistics API (e.g. GDP, population, crime)
  10. Image recognition and tagging API (e.g. image, labels, description)
  11. Video hosting and sharing API (e.g. videos, channels, comments)
  12. Geolocation and mapping API (e.g. maps, routes, points of interest)
  13. Gaming platform API (e.g. games, scores, leaderboards)
  14. OR your own API service idea (must be proposed to, and confirmed by, Module Leader using this form): Web API Development – Portfolio Coursework: API Service Proposal

The resources managed by your REST API should have appropriate CRUD endpoints and you should aim to include middleware to ensure that appropriately structured JSON data is used in the relevant requests and responses, and to ensure that the API is secure (authentication and authorisation). CourseNana.COM

Realistic example data should be populated into all your API's resources for the purposes of demonstration and testing. CourseNana.COM

Portfolio Submission Process CourseNana.COM

The following must be submitted for this assessment. CourseNana.COM

1. Codio CourseNana.COM

  • Use the Web API Development environment set up for Coursework on https://codio.co.uk to complete all your assessed work.
  • Ensure you select "Mark as Completed" on the Codio assessment when you are ready to submit your API. This sets the Codio environment to "read only". Do this before the deadline. See

https://docs.codio.com/students/courses/complete-assignment.html CourseNana.COM

  • Note: Codio features including its Plagiarism Checker and Code Playback are used to help ensure assessment integrity.

2. CU GitHub CourseNana.COM

Commit and push all code and documentation to a private repository in the 6003CEM organisation on Coventry University GitHub
o Do NOT use github.com for your submission - it will not be marked, and you will receive a zero grade.
o Do NOT use personal repositories, as these are not accessible to all module staff. The repository you submit MUST be in the 6003CEM organisation. CourseNana.COM

o You will be added as a member of the organisation during the semester. CourseNana.COM

3. Aula HandIn
Upload a maximum-10-minute video demonstration of your API, API client (if implemented), CourseNana.COM

API integration (if implemented), API documentation, and API endpoint tests. CourseNana.COM

o API endpoint functionality should be demonstrated on screen using Postman or a similar HTTP request-response GUI. CourseNana.COM

o API client (i.e., SPA) functionality (if present) should be demonstrated in a browser. o API third-party integration functionality (if present) should be demonstrated using CourseNana.COM

Postman or a similar HTTP request-response GUI to confirm your own API is integrating CourseNana.COM

the correct third-party data.
o API documentation and code documentation should be shown in a browser.
o API tests should be demonstrated by running them on screen and showing their output CourseNana.COM

o URL links to your Codio environment and CU GitHub repository.
o A short (100-200 words) written summary of your RESTful API service. CourseNana.COM

Constraints CourseNana.COM

Backend CourseNana.COM

All the backend services you develop should provide a Node JS based RESTful API. This must communicate with your application using the JSON data format by default, but you can provide other representations in addition, if you wish. CourseNana.COM

Database CourseNana.COM

Similarly, the choice of database integration on the backend is up to you: options include MySQL, SQLite, MongoDB, and others. CourseNana.COM

Frontend CourseNana.COM

If you choose to build a web client (Task 4 above) then it should be a single page application (SPA) web client built with a framework such as React JS, Vue, Angular, etc.. In terms of visual design the CSS framework you choose, if you decide to use one, is up to you: options include React Bootstrap, Ant Design, Material UI, and others. Note that React JS and Ant Design are used in the module demonstrations. CourseNana.COM

Third-party API Integration(s) CourseNana.COM

If you choose to build a third-party API integration(s) (Task 4 above) then the external data sources chosen are up to you but should be related to your API's functionality. For example, integrating a weather forecasting API into an events API service makes sense, but integrating it into a movie review API service less so. There are several listings of public APIs available to help you discover useful ones. For example, https://github.com/public-apis/public-apis. CourseNana.COM

If in doubt as to the suitability of a particular framework, Node module, or DBMS please ask the Module Leader first. CourseNana.COM

Feedback CourseNana.COM

The assignment will be assessed using the grading rubric. For each criteria the rubric is cumulative which means you need to achieve the lower grades before you can be awarded the higher ones. When the marks are released, you will be provided with: CourseNana.COM

  1. A breakdown of marks you received for each part of the rubric.
  2. Feedback explaining this decision indicating why you missed the higher grade.

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
UK代写,Coventry University代写,6003CEM代写,Web API Development代写,API Portfolio代写,UK代编,Coventry University代编,6003CEM代编,Web API Development代编,API Portfolio代编,UK代考,Coventry University代考,6003CEM代考,Web API Development代考,API Portfolio代考,UKhelp,Coventry Universityhelp,6003CEMhelp,Web API Developmenthelp,API Portfoliohelp,UK作业代写,Coventry University作业代写,6003CEM作业代写,Web API Development作业代写,API Portfolio作业代写,UK编程代写,Coventry University编程代写,6003CEM编程代写,Web API Development编程代写,API Portfolio编程代写,UKprogramming help,Coventry Universityprogramming help,6003CEMprogramming help,Web API Developmentprogramming help,API Portfolioprogramming help,UKassignment help,Coventry Universityassignment help,6003CEMassignment help,Web API Developmentassignment help,API Portfolioassignment help,UKsolution,Coventry Universitysolution,6003CEMsolution,Web API Developmentsolution,API Portfoliosolution,