I am working on a windows phone 8.1 project that pulls data from google server (Blogger, and Gmail). I want to have a background agent the checks the server for new data and notifies user with a push notification. I've created a Windows Runtime Component project hoping I could handle the server side of the project (Authentication, saving credentials, ... ) in the windows runtime so I could call it from anywhere without having to have multiple servers here and there, but for so many reasons it is not possible, Is there anyway that I can authenticate the user in the main app and use the servers in the background agents for notifications ?
google server in backgroind trask c#
59 Views Asked by apramc At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in PUSH-NOTIFICATION
- Custom Sound for Expo Push Notifications Only Works in Foreground
- Actionable notification api call not working in background
- After adding the packages of "Xamarin.Firebase.Messaging", getting error related to JAVA0000 "Compilation failed"
- How can I schedule OneSignal notifications programmatically from a Flutter app
- Firebase push doesnt receive after init in other process
- Background notification also get muted on removing "sound" from presentationOptions in @capacitor-firebase/messaging?
- Push notifications in flutter webview app
- (iOS) Can we have multiple APNs files for the same app?
- How does iOS notifications handle cases without content-available key
- Push notification can't be activated in certain phone models and OS
- How to modified remote notification body content in ios using react native
- Push notification sent from Laravel is received by Android device, but isn't received by iOS device
- i want to get the FCM token
- How to update my service worker for existing web push subscribers?
- Android FCM push notification not launching the application on click
Related Questions in GOOGLE-API
- Can you use the Drive API to share a file in Google Drive to an oath2 subject rather than email address?
- youtube api quota limit of 10000api
- How can i get the reviews in google maps via API
- Google api nearbysearch how to filter data business_status
- Optimizing Gmail API Query or Alternative Method to Retrieve Total Email Size
- How to use Oauth in order to log‑in on .googleapis.com on almost any arbitrary endpoints domains from the web browser?
- How do I get rid of any type of Memory Saver in Chrome
- Google Picker API not firing callback when using toUri() in iframe
- Python Google Speech v1 voice_activity_timeouts error
- How to config expo MapView correctly?
- Google can't find my keyfilePath in my NextJS app?
- Renaming a file - Google API direct download link
- Access Regular Gmail Account with API in Lambda
- Security of Google Drive API Objects using Google Service Account Credentials in Client Side Code for Website
- Dataportablity api stops working after two weeks
Related Questions in WINDOWS-PHONE-8.1
- Windows Phone StackPanel control alternative for Xamarin Forms?
- XamlParseException when using the XAML Designer
- Issues while publishing a Windows phone app in the Windows Store
- PublicClientApplication cctor doesn't work on windows phone 8.1 (System.NullReferenceException)
- How to extract String path from ApplicationData.Current.LocalFolder
- Get app purchase date for Windows Phone 8.1 and Windows 8.1 applications
- How to create thumbnail/snapshot from bing maps in c# for universal solution
- When I touch webview content and then somewhere outside after the app crashes
- Unable to load DLL 'sqlite3': in windows phone app.
- How to give dynamic width to gridview items (text block)?
- URI Scheme for Microsoft Equalizer app on Windows Phone 8.1
- Changing style based on trigger with Xamarin.Forms on WinPHone 8.1
- Why does Visual Studio create another *.appx inside a folder Dependecies
- HttpClient hangs for large request
- Windows Phone 8.1/10 App Developement
Related Questions in BACKGROUND-AGENTS
- Background Agent in UWP
- Using background agents on Windows Phone 8.1 to save user location after device reset
- google server in backgroind trask c#
- Server Authentication in Windows Run Time Component for background agent
- Windows 10 - Background Agents/Services?
- Impossible to add background agents as reference on Windows Phone Silverlight 8.1
- single background agent for multiple apps(signed with the same certificate) in windows phone 8?
- toast notification throwing unhandlend exception in background agent wp8
- Keep StreamSocketListener running in background on Windows Phone 8
- Universal volume control navigation WP8
- Windows phone 8.1 deployment error when trying to use background task with audio and device use trigger
- Separate background agent for a Windows Phone app to update live tile + lock screen independently
- Windows Phone Background Agents - Custom Control causing Unknown parser error: Scanner 2147500037
- Windows Phone 8 background agent only runs when using a debug build (seems to not be running on a release build)
- Restoring a live tile to a static tile automatically after I remove its background agent
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I am not quite clear on your requirements but Windows Phone 8.1 does not really allow a constantly running background process that checks for notifications. Try this and see if it fits your needs;
https://developers.google.com/cloud-messaging/gcm