[PR #27] [MERGED] 3 prototype spotify playback sdk #246

Closed
opened 2026-02-27 19:17:26 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/EddieTheCubeHead/Stagnum/pull/27
Author: @EddieTheCubeHead
Created: 1/20/2024
Status: Merged
Merged: 1/23/2024
Merged by: @EddieTheCubeHead

Base: masterHead: 3-prototype-spotify-playback-sdk


📝 Commits (10+)

  • 0f354f8 Poc folder base
  • e0b72f7 Created next.js project
  • 71b138b Almost functionali API login server-side
  • 02e1e71 Merge branch '3-prototype-spotify-playback-sdk' of github.com:EddieTheCubeHead/Poolify into 3-prototype-spotify-playback-sdk
  • f0e3be2 Login button sends request
  • cfb26e6 Merge branch '3-prototype-spotify-playback-sdk' of https://github.com/EddieTheCubeHead/Poolify into 3-prototype-spotify-playback-sdk
  • b57f971 login button sends get request
  • 8512187 removed services folder
  • f2e47ce play button sends a play request
  • 176868c user redericted to /play on succesfull login

📊 Changes

24 files changed (+431 additions, -2 deletions)

View changed files

📝 .gitignore (+3 -1)
📝 README.md (+1 -1)
client/.gitignore (+0 -0)
client/README.md (+0 -0)
package-lock.json (+6 -0)
poc-client/.eslintrc.json (+3 -0)
poc-client/.gitignore (+37 -0)
poc-client/README.md (+36 -0)
poc-client/app/auth/callback/page.tsx (+35 -0)
poc-client/app/favicon.ico (+0 -0)
poc-client/app/globals.css (+33 -0)
poc-client/app/layout.tsx (+22 -0)
poc-client/app/page.tsx (+26 -0)
poc-client/app/play/page.tsx (+23 -0)
poc-client/next.config.mjs (+4 -0)
poc-client/package.json (+28 -0)
poc-client/postcss.config.js (+6 -0)
poc-client/public/next.svg (+1 -0)
poc-client/public/vercel.svg (+1 -0)
poc-client/tailwind.config.ts (+20 -0)

...and 4 more files

📄 Description

A functional prototype that logs in to spotify with OAuth and then uses existing playback device to play "Never gonna give you up" by Rick Astley


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/EddieTheCubeHead/Stagnum/pull/27 **Author:** [@EddieTheCubeHead](https://github.com/EddieTheCubeHead) **Created:** 1/20/2024 **Status:** ✅ Merged **Merged:** 1/23/2024 **Merged by:** [@EddieTheCubeHead](https://github.com/EddieTheCubeHead) **Base:** `master` ← **Head:** `3-prototype-spotify-playback-sdk` --- ### 📝 Commits (10+) - [`0f354f8`](https://github.com/EddieTheCubeHead/Stagnum/commit/0f354f86b709e342dfe6c97940f553783fa26512) Poc folder base - [`e0b72f7`](https://github.com/EddieTheCubeHead/Stagnum/commit/e0b72f70c20748a14442bfd68445ba08651ceee8) Created next.js project - [`71b138b`](https://github.com/EddieTheCubeHead/Stagnum/commit/71b138b60e8086082269ab892408c650c065b040) Almost functionali API login server-side - [`02e1e71`](https://github.com/EddieTheCubeHead/Stagnum/commit/02e1e717f1d8d038e690f5d09fa39f08bd6bed65) Merge branch '3-prototype-spotify-playback-sdk' of github.com:EddieTheCubeHead/Poolify into 3-prototype-spotify-playback-sdk - [`f0e3be2`](https://github.com/EddieTheCubeHead/Stagnum/commit/f0e3be236f755da776144b6d84ebbd5b59075179) Login button sends request - [`cfb26e6`](https://github.com/EddieTheCubeHead/Stagnum/commit/cfb26e6d6f51a71eccfd757cefc23d3d7df17fe8) Merge branch '3-prototype-spotify-playback-sdk' of https://github.com/EddieTheCubeHead/Poolify into 3-prototype-spotify-playback-sdk - [`b57f971`](https://github.com/EddieTheCubeHead/Stagnum/commit/b57f9715eb6928268d650628408f89d9b998f1ae) login button sends get request - [`8512187`](https://github.com/EddieTheCubeHead/Stagnum/commit/851218797423122ca8f1a90977aad36c2a9f01c5) removed services folder - [`f2e47ce`](https://github.com/EddieTheCubeHead/Stagnum/commit/f2e47ce4d3bb9dc505eebbda5b7e2327827d308a) play button sends a play request - [`176868c`](https://github.com/EddieTheCubeHead/Stagnum/commit/176868c49e3a1ccd10d5818f3d587d5d85bd3f2c) user redericted to /play on succesfull login ### 📊 Changes **24 files changed** (+431 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -1) 📝 `README.md` (+1 -1) ➖ `client/.gitignore` (+0 -0) ➖ `client/README.md` (+0 -0) ➕ `package-lock.json` (+6 -0) ➕ `poc-client/.eslintrc.json` (+3 -0) ➕ `poc-client/.gitignore` (+37 -0) ➕ `poc-client/README.md` (+36 -0) ➕ `poc-client/app/auth/callback/page.tsx` (+35 -0) ➕ `poc-client/app/favicon.ico` (+0 -0) ➕ `poc-client/app/globals.css` (+33 -0) ➕ `poc-client/app/layout.tsx` (+22 -0) ➕ `poc-client/app/page.tsx` (+26 -0) ➕ `poc-client/app/play/page.tsx` (+23 -0) ➕ `poc-client/next.config.mjs` (+4 -0) ➕ `poc-client/package.json` (+28 -0) ➕ `poc-client/postcss.config.js` (+6 -0) ➕ `poc-client/public/next.svg` (+1 -0) ➕ `poc-client/public/vercel.svg` (+1 -0) ➕ `poc-client/tailwind.config.ts` (+20 -0) _...and 4 more files_ </details> ### 📄 Description A functional prototype that logs in to spotify with OAuth and then uses existing playback device to play "Never gonna give you up" by Rick Astley --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 19:17:26 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Stagnum#246
No description provided.